关于前端:笔记

31次阅读

共计 131 个字符,预计需要花费 1 分钟才能阅读完成。

1、创立 26 个大写字母

const alphabet = Array.from(new Array(26), (ele, index) => {return String.fromCharCode(65 + index);
});

2、获取以后工夫戳

const now = +new Date();

正文完
 0