摘要:
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 阅读全文