码迷,mamicode.com
首页 > 编程语言 > 详细

JavaScript-数组方法

时间:2015-04-11 14:29:31      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:

//push and pop
var testArray = [];
for(var i = 10;i>=0;i++){
testArray.push(i)
}
console.log(testArray);
testArray.reverse();
console.log(testArray)
for(var i=10;i>=0;i++){
testArray.pop();
}

testArray = new(10);
testArray.length;

//slice and splice
testArray = new Array(1,2,3,4,5);
console.log(testArray);
var indexOf = testArray.indexOf(5);
console.log(‘indexOf 5 is ‘ + indexOf);
indexOf= testArray.lastIndexOf(3);
console.log(‘lastIndexOf 3 is ‘ + indexOf);
var slicedArray = testArray.slice(1,2);
console.log(‘sliced array: ‘ + slicedArray );
console.log(testArray);
testArray.splice(0,4);
console.log(‘after splice: ‘ + testArray);

 

JavaScript-数组方法

标签:

原文地址:http://www.cnblogs.com/social/p/4417582.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!