mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-21 19:16:23 +00:00
180 B
180 B
date | id | title |
---|---|---|
2020-11-12 | ca9793a1-b56c-453c-a564-882ba0bd138b | JavaScript String Iteration |
Syntax
for (const ch of 'abc') {
console.log(ch);
}