Skip to content

Instantly share code, notes, and snippets.

@leben-jp
Created March 12, 2018 12:31
Show Gist options
  • Select an option

  • Save leben-jp/52b2c2cbe63e44ee03119ffa93e0b9cb to your computer and use it in GitHub Desktop.

Select an option

Save leben-jp/52b2c2cbe63e44ee03119ffa93e0b9cb to your computer and use it in GitHub Desktop.
var array = ['a', 'b', 'c', 'd'];
var slice1 = array.slice(2, 3);
var slice2 = array.slice(1, 4);
console.log(array); // ['a', 'b', 'c', 'd']
console.log(slice1); // ['c']
console.log(slice2); // ['b', 'c', 'd']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment