處理 Array 小撇步

知道 index 情況要塞值

var result = []
// good for Memory
result[i] = xx

// bad
result.push(xx)

Last updated