Answers for "loop through a string in js"

16

javascript loop through string

for (var i = 0; i < str.length; i++) {
  console.log(str.charAt(i));
}
Posted by: Guest on June-01-2020
1

loop through string javascript

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 "loop through a string in js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language