Print a to z in Javascript

JavaScript

for (let i = 65; i <= 90; i += 1) {
	console.log(String.fromCharCode(i));
}