本文介绍了在JavaScript中创建一个值数组的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
为什么以下code显示未定义
?难道我们不能创建一个值数组?把两个值将不显示此错误。这与JavaScript的问题吗?
<脚本>
VAR技术=新的Array(21);
警报(技术[0]);
< / SCRIPT>
解决方案
家伙答案是如此简单:
<脚本>
VAR技术=新的Array();
tech.push(21);
警报(技术[0]);
< / SCRIPT>
why is the following code showing undefined
? Are we not allowed to create an array with a single value? Putting two values won't show this error. Is this a problem with Javascript?
<script>
var tech = new Array(21);
alert(tech[0]);
</script>
解决方案
guys the answer was as simple as this:
<script>
var tech = new Array();
tech.push(21);
alert(tech[0]);
</script>
这篇关于在JavaScript中创建一个值数组的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!