1须床、arr.slice():沒有任何參數(shù)執(zhí)行一個簡單的淺拷貝铐料。
2、arr.slice(1):不修改原數(shù)組,得到 從索引為1至末尾的數(shù)組
3钠惩、arr.slice(-3):得到數(shù)組末尾的3個柒凉。
4、arr.slice(0,4):得到數(shù)組的前4個篓跛。
5膝捞、[…arr.slice(0, index), newVal, …arr.slice(index+1)]:更改數(shù)組的特定索引值。
// e都是第二個參數(shù)
<button onClick={(e) => this.deleteRow(id, e)}>Delete Row</button>
<button onClick={this.deleteRow.bind(this, id)}>Delete Row</button>