1、创立26个大写字母

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

2、获取以后工夫戳

const now = +new Date();