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

JS -- 数字

时间:2015-08-06 10:50:41      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:

JS – 数字

JS – 数字

if (isNaN (....)) {
    alert(‘no a num‘);
} else {
    alert(‘num‘);
}
Math.PI
Math.E
Math. abs (n)
Math. sin (n)
Math. pow (x, y)
Math. rondom ()              # random() * 5 + 10 表示 5 到 15
Math. floor (n)
Math. ceil (n)
Math. round (n)
Math. sqrt (n)
Math.min (n1, n2, n3...)
Math.max (n1, n2, n3...)
1234.567.toFixed(2)         # 1234.57
num.toString(2)             # 二进制
num.toString(3)             # 三进制

JS -- 数字

标签:

原文地址:http://www.cnblogs.com/sunznx/p/4707082.html

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