Created
November 29, 2019 05:39
-
-
Save firstfu/b4254e5c82aab01e710d5b49482bc126 to your computer and use it in GitHub Desktop.
Revisions
-
firstfu created this gist
Nov 29, 2019 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,6 @@ ## 判断是否为isNaN let n1 = NaN let n2 = 'NaN' console.log(Number.isNaN(n1)) console.log(Number.isNaN(n2))