Math常用方法
document.write(Math.random()+'<br />'); //取随机数
document.write(Math.abs(-12)+'<br />'); //12,取绝对值
document.write(Math.floor(3.1)+'<br />'); //3向下取整,舍去小数点3
document.write(Math.ceil(3.1)+'<br />'); //4向上取整
document.write(Math.ceil(3.9)+'<br />'); //4
document.write(Math.round(3.1)+'<br />'); //3四舍五入
document.write(Math.round(3.9)+'<br />'); //4
document.write(Math.round(3.5)+'<hr>'); //4
document.write(Math.max(3,8,20,4)+'<hr>'); //20,最大
document.write(Math.min(3,8,20,4)+'<hr>'); //3,最小
js常用数据类型转换
toString():转换成字符串;
String():吧unll、undefind转换成字符串;
parseInt():转换成整数类型
parseFloat():把字符串转换成浮点数
Boolean():转换成布尔值,null、undefind,NAN,0转换成false
JSON.parse(str1);字符串转json
JSON.stringfy():json转字符串
网友评论