A lot of these answers either use an array of characters or String.fromCharCode
, I propose a slightly different method that takes advantage of letters in base36:
[...Array(26)].map((e,i)=>(i+10).toString(36))
The advantage of this one is purely code golf, it uses fewer characters than the others.