Fork me on GitHub
  2011年9月4日
摘要: var c = ['red','bule']; //alert(c.push('yellow')); var colors = new Array; var count = colors.unshift('red','yeelow'); count = colors.unshift("black"); var item = colors.pop(); // alert(item); // alert(colors.length)/*栈 last in first out 队列 first in 阅读全文
posted @ 2011-09-04 21:14 【艾伦】 阅读(429) 评论(1) 推荐(1) 编辑