Boucle via la chaîne TypeScript

const str = "Hello Grepper!";
const chars = [...str];
chars.forEach((c, i) => console.log(c, i));
elcharitas