【JavaScript】关于Number类型取整的问题
在开发中会遇到需要数字类型取整的情况,常用的方法是用Math.floor(Number)。例如,在一组颜色数组中,需要随机选取任意一项颜色可以这么做:
/**
* 获取传入颜色组的随机项
* @param {Array} colors 颜色组
*/
function randomColor (colors) {
return colors[Math.floor(Math.random...
原创
2019-09-26 14:03:30 ·
1190 阅读 ·
3 评论