ctrlcv-dev.comgithub

JS 简写cheatsheet

贡献者:BAI

例子

JS
n = +"4096"; // n === 4096
s = "" + 200; // s === '200'
JS
now = +new Date();
isPublished = !!post.publishedAt;

简写

描述简写正常写法
字符串转数字+strparseInt(str, 10) or parseFloat()
Math.floor(num)num \| 0Math.floor(num)
数字转字符串'' + numnum.toString()
时间转换为 UNIX 时间戳+new Date()new Date().getTime()
任何只转换成 boolean 值!!valueBoolean(value)