Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
.push()配列に値を追加するときに、JavaScript の (または coffeescript でさえも) の短縮形はありますか? php の$array[] = 'added to array';.
.push()
$array[] = 'added to array';
を使用できますarr[arr.length] = "new value"が、他に近道はありません。
arr[arr.length] = "new value"