網頁

2014年9月27日 星期六

js Array

Empty an Array with JavaScript

myArray = []; // bad
That isn't the optimal way to get a fresh array;  to truncate an array, and thus empty it, you should set the length property to zero:
myArray.length = 0; // good!
Setting the length equal to zero empties the existing array, not creating another array! This helps you to avoid pointer issues with arrays as well. With the new array method above:

沒有留言:

張貼留言

注意:只有此網誌的成員可以留言。