JavaScript算术操作符

JavaScript算术操作符,首先,JavaScript可以使用标准的算术操作符进行加、减、乘和除运算:

var theSum = 4 + 3;

显然,前面这条语句执行之后,变量theSum的值是7。在运算中,我们还可以使用变量名称:

var productCount = 2;
var subtotal = 14.98;
var shipping = 2.75;
var total = subtotal + shipping;

JavaScript的减法(-)、乘法(*)和除法(/)也是类似的:

subtotal = total - shipping;
var salesTax = total * 0.15;
var productPrice = subtotal / productCount;

如果想计算除法的余数,可以使用JavaScript的模除运算符,也就是“%”

var itemsPerBox = 12;
var itemsToBeBoxed = 40;
var itemsInLastBox = itemsToBeBoxed % itemsPerBox;

上述语句运行之后,变量itemsInLastBox的值是4。

JavaScript对变量值的自增和自减有快捷操作符,分别是(++)和(- -):

productCount++;

上述语句相当于:

productCount = productCount + 1;

类似地,

items--;

与下面的语句作用相同:

items = items -1;

提示:组合操作符
如果变量值的自增或自减不是1,而是其他数值,JavaScript还允许把算术操作符与等号结合使用,比如+=-=

如下面两行代码的效果是相同的:

total = total + 5;
total += 5;

下面两行也是一样:

counter = counter - step;
counter -= step;

乘法和除法算术操作符也可以这样使用:

price = price * uplift;
price *= uplift;

酷客网相关文章:

赞(0)

评论 抢沙发

评论前必须登录!