Alphabet Array JavaScript
const alphabet = 'abcdefghijklmnopqrstuvwxyz'.split('')
console.log(alphabet);
// outputs: ['a', 'b', 'c', ... 'z']
Create an array of the alphabet.
Splitting a string with an empty string results in each character being placed into a slot in the new array.