Skip to content

Instantly share code, notes, and snippets.

@sebdeckers
Created November 23, 2015 01:08
Show Gist options
  • Save sebdeckers/acf135c6f06b7536fb95 to your computer and use it in GitHub Desktop.
Save sebdeckers/acf135c6f06b7536fb95 to your computer and use it in GitHub Desktop.
Array.prototype.fill()
console.log(
new Array(10) // Create an array of 10 undefined elements
.fill('foo') // Replace all the elements with the string 'foo'
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment