Skip to content

Instantly share code, notes, and snippets.

@periakteon
Created March 13, 2023 13:56
Show Gist options
  • Save periakteon/e9c989606540c49d7503add07f3d8751 to your computer and use it in GitHub Desktop.
Save periakteon/e9c989606540c49d7503add07f3d8751 to your computer and use it in GitHub Desktop.
FreeCodeCamp: Comparison with the Equality Operator (Example)
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