---
id: ca9793a1-b56c-453c-a564-882ba0bd138b
title: JavaScript String Iteration
---

# Syntax

``` javascript
for (const ch of 'abc') {
    console.log(ch);
}
```