js小技巧

1、如何优雅的取随机字符窜

Math.random().toString(16).substring(2) //13位

Math.random().toString(36).substring(2) //11位

2、如何优雅的取整

var a = ~~2.33;        //2

var b = 2.33|0;         //2

var c = 2.33>>0;     //2

3、如何用正则优雅的实现金钱格式化:1234567890 --> 1,234,567,890

正则写法:reg = /\B(?=(\d{3})+(?!\d))/g

4、如何最佳让两个整数交换数值

var a = 1;

var b = 2;

a^=b;

b^=a;

a^=b;

//a = 2, b = 1

5、最短的代码实现数组去重(ES6版本才有的数据结构Set)

newSet([1,"1",2,1,1,3]);

6、取数组中的最大值/最小值

var s = [1,2,3,4,5,6,7,8];

var max = Math.max.apply(Math,s);

var max = Math.min.apply(Math,s);

 

 

你可能感兴趣的:(js)