如何在JavaScript中追加元素到数组
时间:2019-05-19 01:25:29 来源:igfitidea点击:
“push ()”方法用于在JavaScript数组中添加元素。
本教程将在JavaScript中初始化数组之后,使用JavaScript中的 push()方法在数组中追加更多的元素。
在JavaScript中追加元素到数组
首先,用JavaScript创建一个数组。
例如,我们正在创建一个包含两个元素“chess”和“football”的游戏数组。
var games = ['chess', 'football'];
现在使用push()方法在游戏数组中再添加两个元素“ tennis和一个 pool。
此方法返回数组中添加新元素后的元素个数。
var total = games.push('tennis', 'pool');
最后,可以使用console.log()函数打印数组的元素。
还可以通过打印变量的总值来检查元素的数量。
console.log(games); // ["chess", "football", "tennis", "pool"] console.log(total); // 4
工作示例:
下面是用JavaScript初始化数组的工作示例。
然后在现有数组中添加更多的元素。
最后将数组元素打印到控制台。
test.html
<script type="text/javascript"> var games = ['chess', 'football']; console.log("---- Array element initial ----"); console.log(games); var total = games.push('teniss', 'pool'); console.log("---- Array element after append ----"); console.log(games); console.log("Total count = " + total); </script>
在html文件中添加以上内容,并在浏览器中检查访问页面。
现在检查浏览器的控制台。