Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save periakteon/00e1f4e2667860f11452475eab485e80 to your computer and use it in GitHub Desktop.
Save periakteon/00e1f4e2667860f11452475eab485e80 to your computer and use it in GitHub Desktop.
FreeCodeCamp: Use Multiple Conditional (Ternary) Operators (inproper ex)
// uygun girinti olmadan kullanmak kodun okunuşunu zorlaştırır,
// dolayısıyla aşağıdaki gibi yazmak yerine
// girintili bir şekilde, bir üstteki örnekte gibi yazmak en iyisidir
function findGreaterOrEqual(a, b) {
return (a === b) ? "a and b are equal" : (a > b) ? "a is greater" : "b is greater";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment