Skip to content

Instantly share code, notes, and snippets.

@rcdexta
Created March 28, 2019 02:59
Show Gist options
  • Save rcdexta/baa3e2e6c99819fea0b069d7de82c021 to your computer and use it in GitHub Desktop.
Save rcdexta/baa3e2e6c99819fea0b069d7de82c021 to your computer and use it in GitHub Desktop.
first and rest
const names = ["first", "middle", "last", "suffix"]
const firstName = _.first(names)
const otherNames = _.rest(names)
const [firstName, ...otherNames] = names
console.log(firstName) // 'first'
console.log(otherNames) // [ 'middle', 'last', 'suffix' ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment