Skip to content

Instantly share code, notes, and snippets.

@d0p3t
Created August 20, 2017 19:07
Show Gist options
  • Save d0p3t/12575bd0be27ccab7b2f13f741532b2b to your computer and use it in GitHub Desktop.
Save d0p3t/12575bd0be27ccab7b2f13f741532b2b to your computer and use it in GitHub Desktop.
For dannytoke
var myArray = ['Bobby', 'Jack', 'Danny'];
var favCities = ['Atlanta', 'Miami'];
function listFirst(array) {
return array[0];
}
console.log(listFirst(myArray));
console.log(listFirst(favCities));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment