forked from exercism/DEPRECATED.javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.js
More file actions
60 lines (45 loc) · 1.25 KB
/
example.js
File metadata and controls
60 lines (45 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
function Triangle(a,b,c) {
'use strict';
this.sides = [ a, b, c ];
this.kind = function() {
var name = "scalene";
if (this.isIllegal()) {
name = "illegal";
} else if (this.isEquilateral()) {
name = "equilateral";
} else if (this.isIsosceles()) {
name = "isosceles";
}
return name;
};
this.isIllegal = function() {
return this.violatesInequality() || this.hasImpossibleSides();
};
this.violatesInequality = function() {
var a = this.sides[0], b = this.sides[1], c = this.sides[2];
return (a + b <= c) || (a + c <= b) || (b + c <= a);
};
this.hasImpossibleSides = function() {
return this.sides[0] <= 0 || this.sides[1] <= 0 || this.sides[2] <= 0;
};
this.isEquilateral = function() {
return this.uniqueSides().length === 1;
};
this.isIsosceles = function() {
return this.uniqueSides().length === 2;
};
this.uniqueSides = function() {
var sides = this.sides;
var uniques = {};
for (var i = 0; i < sides.length; i++) {
var currentSide = sides[i];
uniques[currentSide] = true;
}
var uniqueSides = [];
for (var uniqueSide in uniques) {
uniqueSides.push(uniqueSide);
}
return uniqueSides;
};
}
module.exports = Triangle;