Lodash _.interpose()方法采用一个数组和一个元素,并返回一个新数组,其中给定元素插入到原始数组的每个元素之间。
用法:
_.interpose(array, element)
参数:此方法采用两个参数,如上所示,下面进行讨论:
- array:要在其中插入元素的数组。
- element:要在其他所有元素之间插入的元素。
返回值:此方法返回一个新创建的插入数组。
注意:由于它需要安装lodash contrib库,因此在正常的JavaScript中将无法使用。
可以使用npm install lodash-contrib -save安装lodash contrib库
范例1:在此示例中,我们将使用此方法创建一个新数组。
Javascript
// Defining lodash contrib variable
var _ = require('lodash-contrib');
// Array
var arr = [8,8,8,8,8,8];
// Element
var ele = 0
// Constructing interposed array
var i_arr = _.interpose(arr, ele);
console.log("Array:");
console.log(arr);
console.log("Element:");
console.log(ele);
console.log("Interposed array:");
console.log(i_arr);
输出:
Array: [ 8, 8, 8, 8, 8, 8 ] Element: 0 Interposed array: [ 8, 0, 8, 0, 8, 0, 8, 0, 8, 0, 8 ]
范例2:如果两者之间不存在,则返回原始数组。
Javascript
// Defining lodash contrib variable
var _ = require('lodash-contrib');
// Array
var arr = [8];
// Element
var ele = 0
// Constructing interposed array
var i_arr = _.interpose(arr, ele);
console.log("Array:");
console.log(arr);
console.log("Element:");
console.log(ele);
console.log("Interposed array:");
console.log(i_arr);
输出:此处,由于缺少元素,对块数组进行了补偿。
Array: [ 8 ] Element: 0 Interposed array: [ 8 ]
范例3:对于空数组,将返回相同的空数组。
Javascript
// Defining lodash contrib variable
var _ = require('lodash-contrib');
// Array
var arr = [];
// Element
var ele = 0
// Constructing interposed array
var i_arr = _.interpose(arr, ele);
console.log("Array:");
console.log(arr);
console.log("Element:");
console.log(ele);
console.log("Interposed array:");
console.log(i_arr);
输出:此处,由于缺少元素,对块数组进行了补偿。
Array: [ 0 ] Element: 0 Interposed array: [ 0 ]
相关用法
- underscore.js _.interpose()用法及代码示例
- Lodash _.method()用法及代码示例
- Lodash _.sneq()用法及代码示例
- Lodash _.toQuery()用法及代码示例
- Lodash _.uniqWith()用法及代码示例
- Lodash _.xorWith()用法及代码示例
- Lodash _.head()用法及代码示例
- Lodash _.remove()用法及代码示例
- Lodash _.pullAt()用法及代码示例
- Lodash _.pullAll()用法及代码示例
- Lodash _.pull()用法及代码示例
- Lodash _.nth()用法及代码示例
- Lodash _.takeRight()用法及代码示例
- Lodash _.take()用法及代码示例
- Lodash _.sortedLastIndex()用法及代码示例
- Lodash _.fromPairs()用法及代码示例
- Lodash _.differenceWith()用法及代码示例
- Lodash _.castArray()用法及代码示例
- Lodash _.cloneDeep()用法及代码示例
- Lodash _.clone()用法及代码示例
- Lodash _.sampleSize()用法及代码示例
- Lodash _.find()用法及代码示例
- Lodash _.zipWith()用法及代码示例
- Lodash _.zipObject()用法及代码示例
注:本文由纯净天空筛选整理自taran910大神的英文原创作品 Lodash _.interpose() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。