profileRyan KesPGP keyI build stuffEmailGithubTwitterLast.fmMastodonMatrix

JavaScript String Iteration

Syntax

for (const ch of "abc") {
  console.log(ch)
}