美文网首页
JS字符串数值运算及加号处理问题

JS字符串数值运算及加号处理问题

作者: 未来与传说 | 来源:发表于2017-02-17 11:55 被阅读0次

    console.log( 10 + 20); //此处表示运算 //打印结果: 30 console.log( '10' + 20); //此处表示字符串拼接 //打印结果: 1020 console.log( '10' + '20'); //此处表示字符串拼接 //打印结果: 1020 console.log( +'10' + 20); //此处表示运算 //打印结果: 30 console.log( +'10' + '20'); //此处表示字符串拼接 //打印结果: 1020 console.log( +'10' + +'20'); //此处表示运算 //打印结果: 30

    相关文章

      网友评论

          本文标题:JS字符串数值运算及加号处理问题

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