Skip to content

Instantly share code, notes, and snippets.

@paladinescamila
Created December 20, 2021 18:32
Show Gist options
  • Save paladinescamila/cb638bebb7b97dac85803bea9c66737c to your computer and use it in GitHub Desktop.
Save paladinescamila/cb638bebb7b97dac85803bea9c66737c to your computer and use it in GitHub Desktop.
let numbers = [1,2,3,4,5,6,7];
// replaced = [1,2,0,0,0,6,7]
let replaced = numbers.fill(0, 2, 5);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment