2011-09-15 130 views
0

我想比較一個數字與一組數字。所以對於它我想知道我們如何在javascript中使用use數組,以及更多我想要的語法如何將集合中的值連接到此數組。在此先感謝如何在javascript中添加數組值?

回答

3
array.push(value); //adding value to the end of the array 
var newArray = array.concat(oldArray); //concat array with oldArray 
0

選中此W3Schools的教程,它解釋了什麼是你問的多:

JavaScript Array Object

+1

[MDN數組引用(https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Array)好得多 –

+0

感謝傢伙其驚人的... –