-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathAll Star Code Challenge #30.js
48 lines (40 loc) · 1.86 KB
/
All Star Code Challenge #30.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
38
39
40
41
42
43
44
45
46
47
48
/*
Description:
This Kata is intended as a small challenge for my students
All Star Code Challenge #30
All of Raj's once loner friends are now happily in a relationship. Even Sheldon! However, instead of getting his own girlfriend, he wants things to go back to the way they were - just guys with no one in a relationship.
Create a function called manCave() that accepts an array of Member objects as an argument. If a member in the array has "Raj" as a name, remove all females from the array and convert the status of all males to "Single". The function should return an array with these (now modified) member objects (no girls).
var Member = function(name,gender,status= "In a relationship"){
this.name = name;
this.gender=gender;
this.status=status;
}
var squad = [new Member("Leonard","male","Married"),
new Member("Penny", "female","Married"),
new Member("Howard","male","Married"),
new Member("Bernadette", "female","Married"),
new Member("Sheldon","male","In a relationship"),
new Member("Amy","female","In a relationship"),
new Member("Raj","male","Single")]
manCave(squad);
//[ Member { name: 'Leonard', gender:"male", status: 'Single' },
// Member { name: 'Howard', gender:"male", status: 'Single' },
// Member { name: 'Sheldon', gender:"male", status: 'Single' },
// Member { name: 'Raj', gender:"male", status: 'Single' } ]
squad[0]["status"]=="Single" // => true
Note:
If "Raj" is not in the group, the function should return the input array (unmodified).
Assume the input array will have properly formatted Member objects and do not need to be checked.
*/
function Member(name,gender,status){
this.name = name;
this.gender=gender;
this.status=status;
}
var manCave = function(array){
if (array.some(v=>v.name==='Raj')){
array=array.map((v,i,arr)=>{
return Object.assign(v,{status: 'Single' })}).filter(v=>v.gender!=='female')
}
return array
}