一、建立26個大寫字母code
const alphabet = Array.from(new Array(26), (ele, index) => { return String.fromCharCode(65 + index); });
二、獲取當前時間戳class
const now = +new Date();