Answers for "nodejs loop string"

1

loop through string js

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 "Javascript"

Browse Popular Code Answers by Language