JavaScript for…of文で文字列の要素を取得する

環境
Windows 10 home 64bit
Google Chrome 107.0.5304.122

構文
const 文字列変数名 = 値
for (const val of 文字列の変数名) {
for…of 文を使用して文字列の要素を取得します。

使用例

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
const str = 'study';
for (const val of str) {
console.log(val);
}
const str = 'study'; for (const val of str) { console.log(val); }
const str = 'study';

for (const val of str) {
  console.log(val);
}

実行結果
> “s"
> “t"
> “u"
> “d"
> “y"

JavaScript

Posted by arkgame