0,'='之后的'+'做什么?

这个问题在这里已经有了答案:

  • JavaScript中的= + _意味着什么12个答案

  • 将其转换为数字。 这与-fromIndex相反,所以它必须转换成数字。

    请参阅https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Arithmetic_Operators#-_.28Unary_Plus.29

    +"0" 
    >> 0
    +true 
    >> 1
    
    链接地址: http://www.djcxy.com/p/73929.html

    上一篇: 0, what does the '+' after '=' do?

    下一篇: Single plus operator in javascript