js生成A~Z字母

getEN () {
      const arr = []
      for (let i = 65; i < 91; i++) {
        arr.push(String.fromCharCode(i))
      }
      return arr
}
原文地址:https://www.cnblogs.com/zhaoxiaoying/p/15531886.html