Skip to content

Instantly share code, notes, and snippets.

@minomy13
Last active November 29, 2021 20:48
Show Gist options
  • Save minomy13/be25534628a26151edc4fe7b6d5310b6 to your computer and use it in GitHub Desktop.
Save minomy13/be25534628a26151edc4fe7b6d5310b6 to your computer and use it in GitHub Desktop.
Cungruency Get the congruency sentence of a triangle. #maths
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