Skip to content

Instantly share code, notes, and snippets.

@chuck0523
Created April 15, 2017 00:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chuck0523/e2c3e4ae5c6ec8eed702be74237dcfa7 to your computer and use it in GitHub Desktop.
Save chuck0523/e2c3e4ae5c6ec8eed702be74237dcfa7 to your computer and use it in GitHub Desktop.
let ary = [1, 2, 3, 4, 5]
// array[2]から3個の要素を6で埋める
ary.splice(2, 3, 6, 6, 6)
console.log(ary) // [1, 2, 6, 6, 6]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment