Created
March 13, 2023 13:56
-
-
Save periakteon/e9c989606540c49d7503add07f3d8751 to your computer and use it in GitHub Desktop.
FreeCodeCamp: Comparison with the Equality Operator (Example)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function equalityTest(myVal) { | |
if (myVal == 10) { | |
return "Equal"; | |
} | |
return "Not Equal"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment