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
BetterTweetDeck 3 | |
Black Menu for Google™ | |
Chrome Remote Desktop | |
Copy All Urls | |
Copycat | |
Emoji Keyboard (2016) by EmojiOne™ | |
Free Proxy to Unblock any sites | Touch VPN | |
Ghostery | |
Google When? | |
Grammarly for Chrome |
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
function foo(a=5) { | |
console.log(a); | |
} | |
a() //This should log 5 | |
a(undefined) //This should log undefined what's the point of passing undefined if passing nothing does the same | |
function foo2(a=5, b=10) { | |
console.log(a, b); |