gpt4 book ai didi

javascript - 如何调用数组 JavaScript 中定义的函数

转载 作者:行者123 更新时间:2023-11-29 19:16:22 25 4
gpt4 key购买 nike

<分区>

以下是我的代码,当我尝试控制数组中定义的函数时抛出错误。让我知道我做错了什么。

var a = ['This is a string', {'name': 'Test User'}, 90, undefined, 'Another String', null, function(){return 'This is also valid'}];

for(var i=0; i<a.length; i++) {
if(typeof a[i] === 'function')
console.log(a[i]());
else
console.log(a[i]());
}

获取错误-

TypeError: a[i] is not a function

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