fix(curriculum): Updated javascript curriculum step 17 descripiton (#53460)

This commit is contained in:
Korada Shanmukh Sai
2024-01-31 01:17:55 +05:30
committed by GitHub
parent 2897400793
commit 933bbe7758

View File

@@ -7,6 +7,13 @@ dashedName: step-17
# --description--
In programming, it is standard practice to prefix a variable with `is` or `has` to indicate that the variable is a boolean.
```js
let isRunning = true;
let hasCompleted = false;
```
Declare an `isError` variable and set it to `false`, but use `let` so you can reassign it later.
# --hints--