-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcallbacks.js
More file actions
61 lines (52 loc) · 1.5 KB
/
callbacks.js
File metadata and controls
61 lines (52 loc) · 1.5 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
61
/* eslint-disable */
const firstItem = (arr, cb) => {
cb(arr[0]);
// firstItem passes the first item of the given array to the callback function.
};
const getLength = (arr, cb) => {
cb(arr.length);
// getLength passes the length of the array into the callback.
};
const last = (arr, cb) => {
var last = arr[arr.length - 1]
cb(last);
// last passes the last item of the array into the callback.
};
const sumNums = (x, y, cb) => {
cb(x + y);
// sumNums adds two numbers (x, y) and passes the result to the callback.
};
const multiplyNums = (x, y, cb) => {
cb(x * y);
// multiplyNums multiplies two numbers and passes the result to the callback.
};
const contains = (item, list, cb) => {
for(let i= 0; i < list.length; i++){
if(item == list[i])
return cb(true);
}
return cb (false);
// contains checks if an item is present inside of the given array/list.
// Pass true to the callback if it is, otherwise pass false.
};
/* STRETCH PROBLEM */
const removeDuplicates = (array, cb) => {
// removeDuplicates removes all duplicate values from the given array.
// Pass the duplicate free array to the callback function.
// Do not mutate the original array.
var newarray = [];
for (var i = 0, l= array.length; i < l; i++)
if (newarray.indexOf(array[i]) === -1)
newarray.push (array[i]);
cb (newarray);
};
/* eslint-enable */
module.exports = {
firstItem,
getLength,
last,
sumNums,
multiplyNums,
contains,
removeDuplicates,
};