Created
March 13, 2018 04:46
-
-
Save haingdc/2e51d1bf41725d1acdfe11555da44733 to your computer and use it in GitHub Desktop.
A Gentle Introduction to Functional JavaScript: Part 3
This file contains hidden or 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 showArgs = function(a, b) { | |
console.log(arguments); | |
} | |
showArgs('Tweedledee', 'Tweedledum'); | |
//=> { '0': 'Tweedledee', '1': 'Tweedledum' } (🌟) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment