Skip to content

Instantly share code, notes, and snippets.

@jkup
Created October 13, 2016 07:31
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 jkup/ff9442bcec9d41ae833d229635b0164b to your computer and use it in GitHub Desktop.
Save jkup/ff9442bcec9d41ae833d229635b0164b to your computer and use it in GitHub Desktop.
copyWithinEx1
[1, 2, 3, 4, 5, 6, 7, 8].copyWithin(0, 3, 5);
// copies the values from index 3 to 5 ( 4, 5 )
// plays them in place on the array starting at 0 ( value 1 )
// returns [4, 5, 3, 4, 5, 6, 7, 8]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment