Skip to content

Instantly share code, notes, and snippets.

@periakteon
Last active March 13, 2023 13:40
Show Gist options
  • Save periakteon/47faff565f814407238dbfd07991dbc9 to your computer and use it in GitHub Desktop.
Save periakteon/47faff565f814407238dbfd07991dbc9 to your computer and use it in GitHub Desktop.
FreeCodeCamp: If Statements Solution
function trueOrFalse(wasThatTrue) {
//eğer koşul sağlanıyorsa
if (wasThatTrue) {
return "Yes, that was true";
}
//eğer koşul sağlanmıyorsa
return "No, that was false";
}
console.log(trueOrFalse(true));
//Yes, that was true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment