eggheadio-github / stack-overflow-copy-paste

Utility functions copy/pasted (and modified slightly) from Stack Overflow
441 stars 606 forks source link

add function to get the first element in array #216

Closed latiifabdi closed 5 years ago

latiifabdi commented 5 years ago

Given an array, this function will return the first element of the array

function fist(array) {
  return array[0]
} 
kentcdodds commented 5 years ago

Sounds great @latiifabdi! :+1: