gpt4 book ai didi

javascript - 以下 javascript 函数发生了什么

转载 作者:行者123 更新时间:2023-12-03 02:54:09 27 4
gpt4 key购买 nike

below i have given a javascript code picture `` can any one help me in this code. what do this code. help me in this

function(){
var _ = function()
// The arguments object is an array-like object. It has a length property
// that corresponds to the number of arguments passed into the function
{
var r={},a=arguments;
for(var i=0; i<a.length; i+=2)
r[a[i]]=a[i+1];
return r;
}
}

最佳答案

下面是使用一些参数的脚本示例。

var _ = function() { 

var r = {};
var a = arguments;

for(var i=0; i<a.length; i+=2) {
r[a[i]]=a[i+1];
}
console.log(r);
return r;

}

_('a','1','b','2');

关于javascript - 以下 javascript 函数发生了什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47707887/

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