mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-22 03:26:22 +00:00
13 lines
180 B
Markdown
13 lines
180 B
Markdown
---
|
|
date: 2020-11-12
|
|
id: ca9793a1-b56c-453c-a564-882ba0bd138b
|
|
title: JavaScript String Iteration
|
|
---
|
|
|
|
# Syntax
|
|
|
|
``` javascript
|
|
for (const ch of 'abc') {
|
|
console.log(ch);
|
|
}
|
|
```
|