Last active
June 30, 2022 12:50
-
-
Save thedom85/d4ddf90527248b5ae5d421c0709ee6c6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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