gpt4 book ai didi

名为 status 的 Javascript 数组在谷歌浏览器中不起作用

转载 作者:行者123 更新时间:2023-11-30 06:54:52 25 4
gpt4 key购买 nike

<分区>

我尝试在我的 javascript 中创建一个名为 status 的数组,但它在 Google Chrome 中不起作用。

<html>
<body>
<script>
var array = [1, 2, 3];
document.write("Type of [" + array + "] : " + (typeof array) + "<br />");
document.write("Value of array.length : " + array.length + "<br />");

document.write("<br /><br />");

var status = [1, 2, 3];
document.write("Type of [" + status + "] : " + (typeof status) + "<br />");
document.write("Value of status.length : " + status.length + "<br />");
</script>
</body>
</html>

在上面的代码中,即使我将数组值分配给变量 status 在 chrome 中,该值也被视为字符串类型。

这是 Chrome 的错误还是有效的行为?

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