码迷,mamicode.com
首页 > Web开发 > 详细

JS中数字和字符相加相减问题

时间:2020-07-18 13:38:58      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:gpo   tps   string类   ring   javascrip   tab   情况下   结果   padding   

<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta charset="utf-8" />
    <title></title>
 
</head>
<body>
</body>
</html>
<script type="text/javascript">
    var a = 100;
    var b = "100";
    alert(b- a);
    alert(typeof (b- a));
    alert(a + b - a);
    alert(typeof (a + b - a));
    alert(a + b);
    alert(typeof (a + b));
    alert(a + b - b);
    alert(typeof (a + b - b));
    alert(a + b - b - b);
    alert(typeof (a + b - b - b));
</script>

  运行结果   

  0

 number

 100000

 number

 100100

 string

 100000

 number

 99900

 number

 

由此可知道JS在进行这样的运算时 只会在2个值相加时优先判断为string类型 其他情况下都默认为number型运算!!!!

 

转:https://www.cnblogs.com/Rock-Lee/p/3310936.html

JS中数字和字符相加相减问题

标签:gpo   tps   string类   ring   javascrip   tab   情况下   结果   padding   

原文地址:https://www.cnblogs.com/ygyy/p/13334612.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!