fix(curriculum): fix code example for question 15 of math quiz (#58964)

This commit is contained in:
Breanna Young
2025-02-24 13:28:30 -04:00
committed by GitHub
parent a8fd25e9fd
commit f6de184fac

View File

@@ -328,7 +328,7 @@ It parses a string argument and returns a floating-point number.
What will be logged to the console?
```js
const num = 5;
let num = 5;
console.log(++num);
```