gpt4 book ai didi

javascript - 将参数传递给数组内的匿名函数 - 使用 console.log 返回输出

转载 作者:行者123 更新时间:2023-11-28 01:35:58 26 4
gpt4 key购买 nike

这是一个简单的 Codeschool javascript 数学问题。

我需要使用数组方法 - map() 迭代数组的帮助。如何返回(使用 console.log)每个数组单元格的结果?例如,传递一些数字作为匿名函数(a)的参数的最佳方式是什么。感谢您提供的任何帮助...

var puzzlers = [
function (a) { return 3 * a - 8;},
function (a) { return (a+2) * (a+2) * (a+2);},
function (a) { return (Math.pow(a,2) - 9);},
function (a) { return a % 4;}
];

最佳答案

你可以使用

 array[indexOffunction](parameterToPass)...

解决方案如下:

var puzzlers = [
function ( a ) { return 8*a - 10; },
function ( a ) { return (a-3) * (a-3) * (a-3); },
function ( a ) { return a * a + 4; },
function ( a ) { return a % 5; }
];

alert(puzzlers[puzzlers[1](3)](puzzlers[3](9)));

关于javascript - 将参数传递给数组内的匿名函数 - 使用 console.log 返回输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21538242/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com