JSFiddle - React, Tailwind, and code Playground

by João Vitor Scheuermann

JavaScript

let teste = 'abcdefghijklmnopqrstuvxwyz'

for (let i = 0; i< teste.length; i++) {
	console.log(teste.charCodeAt(i));
}