Last active
May 19, 2017 01:19
-
-
Save bluepnume/b2b023e297f78c5caeb06d7f8028be0b to your computer and use it in GitHub Desktop.
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
// Create a 'sayTo' function that lets you "say something to someone" like so: | |
let sayToJill = sayTo('Jill'); | |
sayToJill.say('hello'); // logs 'hello Jill!' | |
sayToJill.say('goodbye'); // logs 'goodbye Jill!' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
// Create a 'sayTo' function that lets you "say something to someone" like so: