美文网首页
奇葩的 JS

奇葩的 JS

作者: Cherry丶小丸子 | 来源:发表于2024-03-22 14:16 被阅读0次
    typeof NaN ---> "number"
    9999999999999999 ---> 10000000000000000
    0.5+0.1==0.6 ---> true
    0.1+0.2==0.3 ---> false
    Math.max() ---> -Infinity
    Math.min() ---> Infinity
    []+[] ---> ''
    []+{} ---> '[object Object]'
    {}+[] ---> 0
    true+true+true===3 ---> true
    true-true ---> 0
    true==1 ---> true
    true===1 ---> false
    (!+[]+[]+![]).length ---> 9
    9+"1" ---> '91'
    91-"1" ---> 90
    []==0 ---> true
    

    相关文章

      网友评论

          本文标题:奇葩的 JS

          本文链接:https://www.haomeiwen.com/subject/xlghmdtx.html