-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRobot.js
38 lines (29 loc) · 790 Bytes
/
Robot.js
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
function Robot() {
var response;
function initialHi( inputString ) {
return ( inputString == "hi" || inputString == "hi." || inputString == "hi!" );
};
this.respond = function( inputString ) {
var stringLowerCased = inputString.toLowerCase();
if ( initialHi( stringLowerCased ) ) {
response = cases[" hi"];
} else {
for (var key in cases) {
if (stringLowerCased.indexOf(key) >= 0) {
response = cases[key];
return;
} else {
var ran = Math.floor( (Math.random() * ( cases.randRes.length + 1 ) ) );
if (ran < cases.randRes.length) {
response = cases.randRes[ran];
} else {
response = inputString;
}
}
}
}
};
this.getResponse = function() {
return response;
};
}