Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

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