這個洛達什_.splitAt()方法接受一個數組和一個數字索引,然後返回一個新數組,其中包含兩個通過拆分而形成的嵌入式數組的原始陣列位於的提供的數字索引。
用法:
_.splitAt(array, numeric_index)
參數:該方法采用上述和以下所述的兩個參數:
- array:要拆分的數組。
- numeric_index:要分割數組的索引。
返回值:此方法返回一個新創建的包含兩個數組的數組。
注意:由於它需要安裝lodash contrib庫,因此在正常的JavaScript中將無法使用。 lodash contrib庫可以使用安裝npm install lodash-contrib-保存。
範例1:在此示例中,我們將在第4個索引處使用此方法拆分數組。
Javascript
// Defining lodash contrib variable
var _ = require('lodash-contrib');
// Array
var array = [1, 3, 6, 8, 9, 11, 3];
// Value
var value = 4;
// Generating Array using splitAt() method
var arr =_.splitAt(array, value);
console.log("Array:", array);
console.log("Numeric Value:", value);
console.log("Generated Array:", arr);
輸出:
Array: [ 1, 3, 6, 8, 9, 11, 3 ] Numeric Value: 4 Generated Array: [ [ 1, 3, 6, 8 ], [ 9, 11, 3 ] ]
範例2:在此示例中,我們將使用此方法在索引0處拆分一個數組,因此將得到一個空數組,另一個與原始數組相同。
Javascript
// Defining lodash contrib variable
var _ = require('lodash-contrib');
// Array
var array = [1, 3, 6, 8, 9, 11, 3];
// Value
var value = 0;
// Generating Array using splitAt() method
var arr =_.splitAt(array, value);
console.log("Array:", array);
console.log("Numeric Value:", value);
console.log("Generated Array:", arr);
輸出:
Array: [ 1, 3, 6, 8, 9, 11, 3 ] Numeric Value: 0 Generated Array: [ [], [ 1, 3, 6, 8, 9, 11, 3 ] ]
範例3:此方法對於超出範圍的索引是安全的。
Javascript
// Defining lodash contrib variable
var _ = require('lodash-contrib');
// Array
var array = [1, 3, 6, 8, 9, 11, 3];
// Value
var value = 20;
// Generating Array using splitAt() method
var arr =_.splitAt(array, value);
console.log("Array:", array);
console.log("Numeric Value:", value);
console.log("Generated Array:", arr);
輸出:
Array: [ 1, 3, 6, 8, 9, 11, 3 ] Numeric Value: 20 Generated Array: [ [ 1, 3, 6, 8, 9, 11, 3 ], [] ]
相關用法
- underscore.js _.splitAt()用法及代碼示例
- 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 _.splitAt() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。