From 6f9cad331523b31f9296f3d306f60c791ae246c9 Mon Sep 17 00:00:00 2001 From: The Coding Aviator <34807532+thecodingaviator@users.noreply.github.com> Date: Sun, 3 Mar 2019 22:43:12 +0530 Subject: [PATCH] fix(guide): Change true and false to equal and not equal in ternary operator challenge (#35494) --- .../use-the-conditional-ternary-operator/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/certifications/javascript-algorithms-and-data-structures/basic-javascript/use-the-conditional-ternary-operator/index.md b/guide/english/certifications/javascript-algorithms-and-data-structures/basic-javascript/use-the-conditional-ternary-operator/index.md index 2f216ede01..362ff159cf 100644 --- a/guide/english/certifications/javascript-algorithms-and-data-structures/basic-javascript/use-the-conditional-ternary-operator/index.md +++ b/guide/english/certifications/javascript-algorithms-and-data-structures/basic-javascript/use-the-conditional-ternary-operator/index.md @@ -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