Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion code-challenges/lesson-3/challenge-2-solution.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ There are two things wrong with this line
2. We should be using `let` here because later in the code, we re-assign the value of the variable

*/
const some Number = 20;
const someNumber = 20;

// 3. This line is missing a semi-colon at the end
someNumber = 50