Skip to content

Instantly share code, notes, and snippets.

@thedom85
Last active June 30, 2022 12:50
Show Gist options
  • Save thedom85/d4ddf90527248b5ae5d421c0709ee6c6 to your computer and use it in GitHub Desktop.
Save thedom85/d4ddf90527248b5ae5d421c0709ee6c6 to your computer and use it in GitHub Desktop.
// https://www.codewars.com/kata/56606694ec01347ce800001b/train/javascript
function isTriangle(a,b,c)
{
return a + b > c && a + c > b && c + b > a;
}
console.log(isTriangle(1,2,2), true);
console.log(isTriangle(7,2,2), false);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment