Created
March 12, 2018 12:16
-
-
Save leben-jp/4822422ccdb87bfa5699f54be2553bdf 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
| var array = ['a', 'b', 'c']; | |
| array.splice(1, 0, '1'); // 二番目に挿入 | |
| console.log(array); // ['a', '1', 'b', 'c'] | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment