-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustomArrayMethods.js
46 lines (36 loc) · 1.6 KB
/
customArrayMethods.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
// This kata is designed to test your ability to extend the functionality of built-in classes. In this case, we want you to extend the built-in Array class with the following methods: square(), cube(), average(), sum(), even() and odd().
// Explanation:
// square() must return a copy of the array, containing all values squared
// cube() must return a copy of the array, containing all values cubed
// average() must return the average of all array values; on an empty array must return NaN (note: the empty array is not tested in Ruby!)
// sum() must return the sum of all array values
// even() must return an array of all even numbers
// odd() must return an array of all odd numbers
// Note: the original array must not be changed in any case!
// Example
// var numbers = [1, 2, 3, 4, 5];
// numbers.square(); // must return [1, 4, 9, 16, 25]
// numbers.cube(); // must return [1, 8, 27, 64, 125]
// numbers.average(); // must return 3
// numbers.sum(); // must return 15
// numbers.even(); // must return [2, 4]
// numbers.odd(); // must return [1, 3, 5]
// TODO
Array.prototype.square = function(){
return this.map(elem => elem * elem)
}
Array.prototype.cube = function(){
return this.map(elem => elem * elem * elem)
}
Array.prototype.average = function(){
return this.reduce((acc,c) => acc + c, 0)/this.length
}
Array.prototype.sum = function(){
return this.reduce((acc,c) => acc + c, 0)
}
Array.prototype.even = function(){
return this.filter(elem => elem % 2 === 0)
}
Array.prototype.odd = function(){
return this.filter(elem => elem % 2 !== 0)
}