Skip to content

Instantly share code, notes, and snippets.

@haingdc
Created March 13, 2018 04:48
Show Gist options
  • Save haingdc/e9cee18f7268675bfec9448fe5e3d71a to your computer and use it in GitHub Desktop.
Save haingdc/e9cee18f7268675bfec9448fe5e3d71a to your computer and use it in GitHub Desktop.
A Gentle Introduction to Functional JavaScript: Part 3
function twinkleTwinkle(thing) {
console.log('Twinkle, twinkle, little ' + thing);
}
twinkleTwinkle('bat');
//=> Twinkle, twinkle, little bat
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment