Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
Post History
The following code pattern reflects this answer. This code contains a for...of loop: for (const child of e.childNodes) { // Do stuff; } Does a for...of loop must contain a variable without...
#5: Post edited
Does a for...of loop must contain a variable without assignment sign, and why?
- The following code pattern reflects [this answer](https://software.codidact.com/posts/286304/286317#answer-286317).
- This code contains a `for...of` loop:
- ```javascript
- for (const child of e.childNodes) {
- // Do stuff;
- }
- ```
Does a for...of loop must contain a variable without assignment sign (`=`), and why?<br>Is there a way to achieve the same result with "regular" variable declaration?
- The following code pattern reflects [this answer](https://software.codidact.com/posts/286304/286317#answer-286317).
- This code contains a `for...of` loop:
- ```javascript
- for (const child of e.childNodes) {
- // Do stuff;
- }
- ```
- Does a `for...of` loop must contain a variable without assignment sign (`=`), and why?<br>Is there a way to achieve the same result with "regular" variable declaration?
#4: Post edited
The following code is part of [this answer](https://software.codidact.com/posts/286304/286317#answer-286317).- This code contains a `for...of` loop:
- ```javascript
- for (const child of e.childNodes) {
- // Do stuff;
- }
- ```
- Does a for...of loop must contain a variable without assignment sign (`=`), and why?<br>Is there a way to achieve the same result with "regular" variable declaration?
- The following code pattern reflects [this answer](https://software.codidact.com/posts/286304/286317#answer-286317).
- This code contains a `for...of` loop:
- ```javascript
- for (const child of e.childNodes) {
- // Do stuff;
- }
- ```
- Does a for...of loop must contain a variable without assignment sign (`=`), and why?<br>Is there a way to achieve the same result with "regular" variable declaration?
#3: Post edited
Does a for...of loop must contain a variable without = (assignment sign) , and why?
- Does a for...of loop must contain a variable without assignment sign, and why?
- The following code is part of [this answer](https://software.codidact.com/posts/286304/286317#answer-286317).
- This code contains a `for...of` loop:
- ```javascript
- for (const child of e.childNodes) {
- // Do stuff;
- }
- ```
Does a `for...of` loop must contain a variable without `=` ?<br>Is there a way to achieve the same result with "regular" variable declaration?
- The following code is part of [this answer](https://software.codidact.com/posts/286304/286317#answer-286317).
- This code contains a `for...of` loop:
- ```javascript
- for (const child of e.childNodes) {
- // Do stuff;
- }
- ```
- Does a for...of loop must contain a variable without assignment sign (`=`), and why?<br>Is there a way to achieve the same result with "regular" variable declaration?
#2: Post edited
Does a for...of loop must contain an unnamed variable, and why?
- Does a for...of loop must contain a variable without = (assignment sign) , and why?
Please consider the following code which is part of [this answer](https://software.codidact.com/posts/286304/286317#answer-286317).This code contains a for...of loop like this:- ```javascript
- for (const child of e.childNodes) {
- // Do stuff;
- }
- ```
Does a for...of loop must contain an unnamed variable, and why?Is there a way to achieve the same result without using unnamed variables?
- The following code is part of [this answer](https://software.codidact.com/posts/286304/286317#answer-286317).
- This code contains a `for...of` loop:
- ```javascript
- for (const child of e.childNodes) {
- // Do stuff;
- }
- ```
- Does a `for...of` loop must contain a variable without `=` ?<br>Is there a way to achieve the same result with "regular" variable declaration?
#1: Initial revision
Does a for...of loop must contain an unnamed variable, and why?
Please consider the following code which is part of [this answer](https://software.codidact.com/posts/286304/286317#answer-286317). This code contains a for...of loop like this: ```javascript for (const child of e.childNodes) { // Do stuff; } ``` Does a for...of loop must contain an unnamed variable, and why? Is there a way to achieve the same result without using unnamed variables?