Created
May 22, 2022 08:17
-
-
Save nomanoff/4e393d55754d5f49d21e49593c8b86c2 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
Number("0."); // 0 | |
Number(".0"); // 0 | |
Number("."); // NaN | |
Number(undefined); // NaN | |
Number(null); // 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment