Skip to content

Instantly share code, notes, and snippets.

@periakteon
Created March 13, 2023 13:13
Show Gist options
  • Save periakteon/4e298f4e1d58b3be4c56e8b1980023b6 to your computer and use it in GitHub Desktop.
Save periakteon/4e298f4e1d58b3be4c56e8b1980023b6 to your computer and use it in GitHub Desktop.
FreeCodeCamp: If Statements (Example)
function test (myCondition) {
if (myCondition) {
return "It was true";
}
return "It was false";
}
test(true);
test(false);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment