标签:asc while 数组操作 com ace delete if else sse 方法
JavaScript是一种类C的语言,对于我来说学起来还是蛮轻松的
1 输出
console.log(**); 相当于print
arr.slice(0, 3); // 从索引0开始,到索引3结束,但不包括索引3
arr.slice(3); // 从索引3开始到结束
push and pop:在数组尾部添加删除元素
ubshift and shift:在数组头部添加元素
sort:排序
reverse:倒转
splice:修改数组的通用方法。
arr.splice(2, 3, ‘Google‘, ‘Facebook‘);
从索引2开始删除3个元素,然后再添加两个元素:
var m = new Map([[1, ‘x‘], [2, ‘y‘], [3, ‘z‘]]);
m.forEach(function (value, key, map) {
console.log(value);
});
标签:asc while 数组操作 com ace delete if else sse 方法
原文地址:http://www.cnblogs.com/daibigmonster/p/8013150.html