一、建立26个大写字母code
const alphabet = Array.from(new Array(26), (ele, index) => { return String.fromCharCode(65 + index); });
二、获取当前时间戳class
const now = +new Date();