如何在js中產生26個英文字母

如何在js中產生26個英文字母。

const alphabets = [];
const start = 'a'.charCodeAt(0);
for(let i = 0; i < 26; i++) {
    alphabets.push(String.fromCharCode(start + i));
}

javascript