Created
August 20, 2017 19:07
-
-
Save d0p3t/12575bd0be27ccab7b2f13f741532b2b to your computer and use it in GitHub Desktop.
For dannytoke
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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