fix(guide): Change true and false to equal and not equal in ternary operator challenge (#35494)

This commit is contained in:
The Coding Aviator
2019-03-03 22:43:12 +05:30
committed by Randell Dawson
parent 49cc719af8
commit 6f9cad3315

View File

@ -9,7 +9,7 @@ title: Use the Conditional (Ternary) Operator
### ![:checkered_flag:](https://forum.freecodecamp.com/images/emoji/emoji_one/checkered_flag.png?v=3 ":checkered_flag:") Problem Explanation:
* You need to write a function named `checkEqual`, which checks if the two parameters are equal.
* If the parameters are equal, `true` is to be returned else `false` should be returned.
* If the parameters are equal, `Equal` is to be returned else `Not Equal` should be returned.
## ![:speech_balloon:](https://forum.freecodecamp.com/images/emoji/emoji_one/speech_balloon.png?v=3 ":speech_balloon:") Hint