-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathevery.js
More file actions
40 lines (38 loc) · 823 Bytes
/
every.js
File metadata and controls
40 lines (38 loc) · 823 Bytes
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
// Use `.every` in the following methods
// Sample Input:
// [
// { name: 'Carrot', nutritious: true },
// { name: 'Celery', nutritious: true },
// { name: 'Candy', nutritious: true }
// ]
// Expected Output: true
function allNutritious(items) {
return items.every(function (x) {
return x['nutritious']
});
}
// Sample Input:
// [
// 10,
// 14,
// "23"
// ]
// Expected Output: false
function allOfOneType(items) {
return items.every(function (x, index, array) {
var y = typeof (x) === typeof (array[0]);
if (y) {
if (array[0].length === undefined) {
if (x.length !== undefined) {
y = false
}
} else {
if (x.length === undefined) {
y = false
}
}
}
return y
})
}
module.exports = { allNutritious, allOfOneType }