mirror of
https://github.com/alrayyes/wiki.git
synced 2025-02-19 17:56:27 +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);
}