-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharray-helpers.js
More file actions
54 lines (45 loc) · 1.76 KB
/
array-helpers.js
File metadata and controls
54 lines (45 loc) · 1.76 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
//6 Kyu
//Array Helpers
//Fundamentals, Arrays, OOP
// 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]
//Solution
//add square method
Array.prototype.square = function(){
return this.map((el)=>Math.pow(el, 2))
}
//add cube method
Array.prototype.cube = function(){
return this.map((el)=>Math.pow(el, 3))
}
//add average method
Array.prototype.average = function(){
return this.reduce((sum, current)=> sum+current,0)/this.length
}
//add sum method
Array.prototype.sum = function(){
return this.reduce((sum, current)=> sum+current,0)
}
//add even method
Array.prototype.even = function(){
return this.filter((el)=> el % 2 === 0)
}
//add odd method
Array.prototype.odd = function(){
return this.filter((el)=> el % 2 != 0)
}