wiki/content/20201112101851-javascript_string_iteration.md

14 lines
180 B
Markdown
Raw Normal View History

2024-05-06 20:40:05 +00:00
---
2024-10-30 17:34:11 +00:00
date: 2020-11-12
2024-05-06 20:40:05 +00:00
id: ca9793a1-b56c-453c-a564-882ba0bd138b
title: JavaScript String Iteration
---
# Syntax
``` javascript
for (const ch of 'abc') {
console.log(ch);
}
```