for (variable of iterable) {
// code block to be executed
}
\\
**변수(variable)** - 모든 반복에 대해, 다음 속성의 값이 변수에 할당됩니다. 변수는 ''%%const%%'', ''%%let%%'' 또는 ''%%var%%''로 선언될 수 있습니다.\\
\\
**이터러블(iterable)** - 반복 가능한 속성이 있는 객체입니다.\\
=====Browser Support=====
**For/of** 는 2015년(ECMAScript 2015)에 JavaScript에 추가되었습니다.\\
For/of는 Internet Explorer에서 지원되지 않습니다.\\
=====Looping over an Array=====
JavaScript For/Of Loop
The for/of statement loops through the values of an iterable object.
=====Looping over a string=====
====Example====
JavaScript For/Of Loop
The for/of statement loops through the values of an iterable object.
{{tag>오션 Javascript For of}}