1.生成随机ID
// 生成长度为10的随机字母数字字符串
Math.random().toString(36).substring(2);
2.每秒更新当前时间
setInterval(()=>document.body.innerHTML=new Date().toLocaleString().slice(10,18))
3.生成随机 16 进制 颜色 码 如 # ffffff
'#' + Math.floor(Math.random() * 0xffffff).toString(16).padEnd(6, '0');
4.返回键盘
(_=>[..."`1234567890-=~~QWERTYUIOP[]\~ASDFGHJKL;'~~ZXCVBNM,./~"].map(x=>(o+=`/${b='_'.repeat(w=x<y?2:' 667699'[x=["BS","TAB","CAPS","ENTER"][p++]||'SHIFT',p])}\|`,m+=y+(x+' ').slice(0,w)+y+y,n+=y+b+y+y,l+=' __'+b)[73]&&(k.push(l,m,n,o),l='',m=n=o=y),m=n=o=y='|',p=l=k=[])&&k.join`
`)()
5.优雅的取整
var a = ~~2.33 ----> 2
var b = 2.33 | 0 ----> 2
var c = 2.33 >> 0 ----> 2
6.优雅的金钱格式化
(1)、使用正则实现
var test1 = '1234567890'
var format = test1.replace(/\B(?=(\d{3})+(?!\d))/g, ',')
console.log(format) // 1,234,567,890
(2)、使用骚操作
function formatCash(str) {
return str.split('').reverse().reduce((prev, next, index) => {
return ((index % 3) ? next : (next + ',')) + prev
})
}
console.log(format) // 1,234,567,890
7.优雅的取整
var a = ~~2.33 ----> 2
var b = 2.33 | 0 ----> 2
var c = 2.33 >> 0 ----> 2
8.实现值交换
[a, b] = [b, a]; (ES6,解构赋值)
var temp = a; a = b; b = temp; (传统,但需要借助临时变量)
9.实现深拷贝
var b = JSON.parse(JSON.string(a))
10.console
try{
if(window.console&&window.console.log) {
console.log("不谢:%chttp://t66y.com/","color:red");
}
}
catch(e){};
console.info("%c哈哈", "color: #3190e8; font-size: 30px; font-family: sans-serif");
11.优化if,else
(1)一般
var Statistics = function(){
console.log('执行')
}
switch (currentTab)
{
case 0:
Statistics();
break;
case 1:
Statistics();
break;
case 2:
Statistics();
break;
case 3:
Statistics();
break;
(1)处理
//将判断条件作为对象的属性名,将处理逻辑作为对象的属性值
var Statistics = function(){
console.log('执行')
}
const comparativeTotles = new Map([
[0,Statistics],
[1,Statistics],
[2,Statistics],
[3,Statistics]
])
let map = function(val){
return comparativeTotles.get(val)
}
let getMap = map(1); //如果查找不到返回undefined
if(!getMap){
console.log('查找不到')
}else{
concaozuole.log('执行操作')
getMap()
}
(2)/**
* 按钮点击事件
* @param {number} status 活动状态:1开票中 2开票失败 3 开票成功 4 商品售罄 5 有库存未开团
* @param {string} identity 身份标识:guest客态 master主态
*/
const onButtonClick = (status, identity) => {
if (identity == 'guest') {
if (status == 1) {
//函数处理
} else if (status == 2) {
//函数处理
} else if (status == 3) {
//函数处理
} else if (status == 4) {
//函数处理
} else if (status == 5) {
//函数处理
} else {
//函数处理
}
} else if (identity == 'master') {
if (status == 1) {
//函数处理
} else if (status == 2) {
//函数处理
} else if (status == 3) {
//函数处理
} else if (status == 4) {
//函数处理
} else if (status == 5) {
//函数处理
} else {
//函数处理
}
}
}
(2) 处理
//利用数组循环的特性,符合条件的逻辑都会被执行,那就可以同时执行公共逻辑和单独逻辑。
const functionA = ()=>{/*do sth*/} // 单独业务逻辑
const functionB = ()=>{/*do sth*/} // 单独业务逻辑
const functionC = ()=>{/*send log*/} // 公共业务逻辑
const actions = new Map([
['guest_1', () => { functionA }],
['guest_2', () => { functionB }],
['guest_3', () => { functionC }],
['guest_4', () => { functionA }],
['default', () => { functionC }],
//...
])
/**
* 按钮点击事件
* @param {string} identity 身份标识:guest客态 master主态
* @param {number} status 活动状态:1开票中 2开票失败 3 开票成功 4 商品售罄 5 有库存未开团
*/
const onButtonClick = (identity, status) => {
let action = actions.get(`${identity}_${status}`) || actions.get('default')
action.call(this)
}
网友评论