26个字母优雅写法

 letters: [
        'A',
        'B',
        'C',
        'D',
        'E',
        'F',
        'G',
        'H',
        'I',
        'J',
        'K',
        'L',
        'M',
        'N',
        'O',
        'P',
        'Q',
        'R',
        'S',
        'T',
        'U',
        'V',
        'W',
        'X',
        'Y',
        'Z',
      ],
  
 
letters: new Array(26)
        .fill(0)
        .map((item, index) => String.fromCharCode(65 + index)),
原文地址:https://www.cnblogs.com/Serendipity-zly/p/12932061.html