我正在尝试找到一种方法来使用 JS 的Array.prototype.map()
功能,该函数具有一个额外的参数(如果可能的话,我想避免重写 built-in Array.prototype.map()
)。该文档非常好,但不包括“一个或多个附加参数”的情况:
https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Array/map
function doOpSingle(elem)
{
// do something with one array element
}
var A = ["one", "two", "three", "four"];
var x = A.map(doOpSingle); // this will execute doOpSingle() on each array element
到目前为止,一切都很好。但是,如果所讨论的函数有两个参数,例如您可能想要对它进行或的标志(想想位掩码)怎么办?
function doOpSingle2(arrelem,flag)
{
// do something with one array element
}
var A = ["one", "two", "three", "four"];
var theFlag = util.getMask(); // call external function
var y = A.map(doOpSingle2(theFlag)); // this does not work!
当然,任何解决方案都应该没有 for
循环,因为这就是为什么我们有map()
, 以使我们的代码更干净/摆脱这些!