-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsumMixedArray.js
44 lines (39 loc) · 983 Bytes
/
sumMixedArray.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
//Feb 10 2020
function sumMix(x){
console.log(x);
for(var i = 0; i < x.length; i++) {
//console.log(typeof x[i]);
let current = x[i];
if (typeof current == 'string') {
// console.log(x[i]);
let num = Number(current);
// console.log(x[i]);
x.splice(current, 1);
// console.log(x[i]);
//console.log(x[i]);
// console.log('string')
// } else {
// console.log('number')
}
console.log(x);
}
//console.log(x);
//newArray = x.forEach(element => console.log(element));//parseInt(element, 10));
//console.log(newArray);
}
sumMix([9, 3, '7', '3']);
//22
//Aug 2 2020
function sumMix(x){
return x.map(a => parseInt(a)).reduce((sum, num) => sum + num, 0);
}
//fixed my solution from February
function sumMix(x){
for(let i = 0; i < x.length; i++) {
if (typeof x[i] == 'string') {
let num = parseInt(x[i]);
x.splice(i, 1, num);
}
}
return x.reduce((sum, num) => sum + num, 0);
}