orangeyyy
12/6/2017 - 5:06 AM

有趣的代码

console.log((!(~+[])+{})[--[~+""][+[]]*[~+[]] + ~~!+[]]+({}+[])[[~!+[]]*~+[]]) // ->SB
console.log(([][[]]+[])[+!![]]+([]+{})[!+[]+!![]]) // ->


try{
  something
}catch(e){
  window.location.href = “http://www.imooc.com/search/course?words= ” + e.message;
}

//随机字符串
Math.random().toString(16).substring(2) // 13位
Math.random().toString(36).substring(2) // 11位

//颜色随机
Math.floor(Math.random() * (2 << 23)).toString(16)