Created
September 19, 2019 20:43
-
-
Save djD-REK/4f3d69bdc2af110dcd04cf410a0a08cd 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
// "The following are confusing, dangerous, and wasteful. Avoid them." -MDN Docs | |
typeof new Boolean(false) === 'object'; // true | |
typeof new Number(37) === 'object'; // true | |
typeof new String(`Hello World!`) === 'object'; // true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment