Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
This clears the confusion presented at Issue [#661](#661 (comment)). ```JavaScript //line1 guesses.textContent = `${guesses.textContent} ${userGuess}`; //line2 guesses.textContent += userGuess + ' '; ``` The code below line 1 is presented on the [tutorial](https://developer.mozilla.org/en-US/docs/Learn/JavaScript/First_steps/A_first_splash), and line2 on the [proposed solution](https://github.com/mdn/learning-area/blob/main/javascript/introduction-to-js-1/first-splash/number-guessing-game.html). The change made would somewhat clear the confusion.
- Loading branch information