_.splat()方法采用一個函數,該函數接受一個或多個參數,因此返回一個函數,該函數采用一個數組並將其元素用作原始函數的參數。
用法:
_.splat( function );
參數:
- function:包含參數的原始函數。
返回值:此方法返回一個函數。
注意:由於它需要安裝underscore.js contrib庫,因此在正常的JavaScript中將無法使用。
可以使用npm install underscore-contrib -save安裝underscore.js contrib庫。
範例1:
// Defining underscore contrib variable
var _ = require('underscore-contrib');
function addNum (a, b) {
return a + b;
}
var listTwoNamesFromArray = _.splat(addNum);
console.log( listTwoNamesFromArray([1, 2]) );
輸出:
3
範例2:
// Defining underscore contrib variable
var _ = require('underscore-contrib');
function addNum (a, b) {
return a +":"+ b;
}
var listTwoNamesFromArray = _.splat(addNum);
console.log( listTwoNamesFromArray(
["GeeksforGeeks", "Computer Science Portal for Geeks"]) );
輸出:
GeeksforGeeks:Computer Science Portal for Geeks
相關用法
- ASP End用法及代碼示例
- JQuery is()用法及代碼示例
- p5.js Table get()用法及代碼示例
- underscore.js _.kv()用法及代碼示例
- underscore.js _.always()用法及代碼示例
- HTML DOM before()用法及代碼示例
- HTML DOM after()用法及代碼示例
- d3.js lineRadial()用法及代碼示例
注:本文由純淨天空篩選整理自taran910大神的英文原創作品 Underscore.js _.splat() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。