Created
March 6, 2020 06:44
-
-
Save jsmanifest/ac809e517e0f95a6b1af6b03a4330ca3 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
let fruit = 'apple' | |
function sayStuff(stuff) { | |
window.alert(stuff) | |
} | |
sayStuff(`i love eating ${fruit}s`) // implicit | |
// or | |
sayStuff < number > 500 // explicit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment