這篇文章為大家帶來了關於javascript內建物件math的相關知識,其中根據範例講解了Math中常用函數的用法,包括了絕對值方法、三個取整方法等等,下面一起來看一下,希望對大家有幫助。
【相關推薦:javascript影片教學、web前端】
//1.绝对值方法 console.log(Math.abs(1)); // 1 console.log(Math.abs(-1)); //1 console.log(Math.abs('-5')); //5 会隐式转换,将数字字符串转换为数字,然后取绝对值 console.log(Math.abs('aniu')); // NaN
//2.三个取整方法 console.log(Math.floor(1.1)); //1 console.log(Math.floor(1.9)); //1 console.log(Math.floor(-1.1)); //-2 console.log(Math.ceil(1.1)); // 2 console.log(Math.ceil(1.9)); //2 console.log(Math.ceil(-1.9)); //-1 console.log(Math.round(1.5)); //2 四舍五入 .5这个特殊,是往大了取 console.log(Math.round(-1.5)); // -1 往大了取 console.log(Math.round(-1.2)); // -1
//3.求最大值/最小值 console.log(Math.max(1,5,78,46)); console.log(Math.min(1,5,78,46));
//4.随机数 console.log(Math.random());
#案例-隨機點名(嘿嘿嘿)#求兩個數字之間的隨機整數並且包含這兩個數字: //核心演算法
Math.floor(Math.random()*(max-min)) min;function getRandom(min,max){ return Math.floor(Math.random()*(max-min)) + min; } console.log(getRandom(1,7));
//随机点名 var arr = ['阿牛','梦梦','小鸣人','winter','小何','WA','贱神','扎哇'] //太多啦,就写这些举例啦 console.log(arr); console.log('阿牛爱你们???'); function getRandom(min,max){ return Math.floor(Math.random()*(max-min)) + min; } console.log('随机点中了:' + arr[getRandom(0,arr.length - 1)]);
以上是JavaScript內建物件Math實例分享的詳細內容。更多資訊請關注PHP中文網其他相關文章!