Created
April 15, 2017 00:36
-
-
Save chuck0523/72ba484578e82059e984e8137959909d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let ary = [1, 2, 3, 4, 5] | |
// 第二引数は"個数" | |
ary.splice(2, 3) // [3 , 4, 5] | |
// 破壊的変更がなされる | |
console.log(ary) // [1, 2] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment