js隊列方法push()、shift()與pop()、unshift()的簡單總結

 先來看一段代碼: var colors=new Array(); var count=colors.unshift("red","green");    //推入多個項 console.log(colors); // ["red", "green"] count=colors.unshift("black");                  //
相關文章
相關標籤/搜索