Skip to content

Instantly share code, notes, and snippets.

View aaroneiche's full-sized avatar

Aaron Eiche aaroneiche

View GitHub Profile
@bendc
bendc / alphabet.js
Created January 30, 2015 21:38
Array of uppercase and lowercase letters
const letters = (() => {
const caps = [...Array(26)].map((val, i) => String.fromCharCode(i + 65));
return caps.concat(caps.map(letter => letter.toLowerCase()));
})();