标签:
JS随机字符串Math.random().toString(16).substring(2); //8位 Math.random().toString(36).substring(2); //16位
JS最大值和最小值Math.max.apply(Math, [1,2,3]) //3 Math.min.apply(Math, [1,2,3]) //1
JS常用功能
原文地址:http://www.cnblogs.com/eaysun/p/4211292.html