好好学一遍JavaScript 笔记(二)——encode、数组、对象创建(3)
来源:未知 责任编辑:责任编辑 发表时间:2015-10-08 14:16 点击:次
* tan(x) 返回x的正切值
*/
alert(Math.log(Math.exp(12)));
alert(Math.pow(2,10)); //1024
/**
* 数字的平方根就是它的2/1次幂
* 2的2/1次幂就是2的平方根
*/
alert(Math.sqrt(4));
[javascript]
/**
* Math的random()方法
* 该方法返回0到1之间的随机数、不包括0和1
*/
alert(Math.random());
/**
* 返回iFirstValue到iLastValue的之间(包括)的随机数
* @param {Object} iFirstValue 起始值
* @param {Object} iLastValue 结束值
* @return {TypeName}
*/
function selectFrom(iFirstValue,iLastValue){
var iChoices = iLastValue - iFirstValue + 1 ;
return Math.floor(Math.random() * iChoices + iFirstValue) ;
}
//返回1到9的随机数、包括1跟9
alert(selectFrom(1,9));
相关新闻>>
最新推荐更多>>>
- 发表评论
-
- 最新评论 更多>>