Last active
November 29, 2021 20:48
-
-
Save minomy13/be25534628a26151edc4fe7b6d5310b6 to your computer and use it in GitHub Desktop.
Cungruency Get the congruency sentence of a triangle. #maths
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
function getCongruency(a, b, c, Al, Be, Ga) { | |
var allGiven = [a, b, c, Al, Be, Ga]; | |
var given = []; | |
for (var i = 0; i < 6; i++) { | |
if (allGiven[i] != null) { | |
given.push(allGiven[i]); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment