fix(curriculum): Step 62 adding null explanation to description (#53533)

This commit is contained in:
ArmestoSantiago
2024-02-05 02:28:47 -03:00
committed by GitHub
parent b616afcdb1
commit e4513ad293
@@ -7,6 +7,8 @@ dashedName: step-62
# --description--
In programming, `null` is meant to represent the absence of a value. In this case, if the user enters an invalid input, you want to alert them and then return `null` to indicate that the function has failed.
Still within your `if` block, set `isError` to `true` and return `null`.
# --hints--