Answers for "typescript iterate through string"

1

loop through string typescript

const str = "Hello Grepper!";
const chars = [...str];
chars.forEach((c, i) => console.log(c, i));
Posted by: Guest on October-10-2021

Code answers related to "typescript iterate through string"

Code answers related to "Javascript"

Browse Popular Code Answers by Language