js算术运算符有哪些
我们在学习python时,会用python函数计算书中 ,而JavaScript可以通过算数运算符计算数值,算数运算符将所有运算子一律转为数值,再进行相应的数学运算。本文介绍JavaScript中基本的算数运算符:1、加法运算符:+;2、减法运算符:-;3、乘法运算符:* ;4、除法运算符: / ;5、余数运算符:% 。
1、加法运算符:+
x + y
实例
var a = 10;var b = a + 10; // b = a+10 = 10+10 =20
2、减法运算符:-
x - y
实例
var result1 = 5 - true;var result2 = NaN - 1;
var result3 = 5 - 3;
console.log(result1); //4,因为true转换为1
console.log(result2); //NaN
console.log(result3); //2
3、乘法运算符:*
x * y
实例
var e = (8 + 5) * 3;var f = 'xkd' * 3;
console.log(e); // 输出:39
console.log(f); // 输出:NaN
4、除法运算符: /
x / y
实例
var result = 15 / 3;console.log(result); //5
5、余数运算符:%
x % y
运算结果的正负号由第一个运算子的正负号决定。
var result = 10 % 3;console.log(result); //1
以上就是JavaScript中基本的算数运算符,除了加法运算符,其他算术运算符都不会发生重载哦~
以上是 js算术运算符有哪些 的全部内容, 来源链接: utcz.com/z/542396.html