document.write('<br>求最大最小值----------------</br>');
//求最大值
document.write('最大值等于'+Math.max(1,3,4,8,10)+'</br>');
//求最小值
document.write('最小值等于'+Math.min(1,3,4,8,10)+'</br>');
// 求PI=180度
Math.PI
//向下取整
Math.floor();
//向上取整
Math.ceil();
//随机生成[0,1]含0不包含1
Math.random();
document.write('<br>生成4位数的随机码----------------</br>');
//随机生成4位的随机验证码
function generateVerifyCode(length){
var strLetterNumber="01234567abcdefg";
arr=strLetterNumber.split("");//将字符串进行分割,并存放到一个数组中
var code='';
for(var i=0;i<length;++i){
//方法一:通过随机获取字符的索引生成随机数
var n = Math.floor(Math.random() * arr.length);
code+= arr[n];
// 方法二:通过对charAt()获取指定索引处的字符
//var randomNumber=Math.floor(Math.random()*strLetterNumber.length);
// code=code +strLetterNumber.charAt(randomNumber);//charAt()用于返回指定索引处的字符
}
return code;
}
document.write('4位随机码为:'+generateVerifyCode(4)+'</br>');
document.write('<br>生成随机颜色RGB----------------</br>');
//生成随机的颜色rgb
function Color(){
var r=Math.floor(Math.random()*256);
var g=Math.floor(Math.random()*256);
var b=Math.floor(Math.random()*256);
document.write('r:'+r+' '+'g:'+g+' '+'b:'+b);
}
Color();
console