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