JavaScript
x
35
35
1
let args: string[] = process.argv.slice(2);
2
console.log(`All arguments: ${args}`);
3
4
let numbers: number[] = saveNumbers();
5
console.log(`All Numbers: ${numbers}`);
6
7
console.log(`1st argument < 10: ${firstNumberFullfill(numbers,x => x < 10)}`);
8
9
console.log(`1st argument > 10: ${firstNumberFullfill(numbers,x => x > 1000)}`);
10
11
console.log(`1st not numerical argument: ${firstNumberFullfill(args,x => isNaN(x))}`);
12
13
function saveNumbers():number[]{
14
let nums: number[] = [];
15
16
for(let a of args){
17
let num = parseInt(a);
18
if(isNaN(num) == false){
19
console.log(a)
20
nums.push(parseInt(a));
21
}
22
}
23
return nums;
24
}
25
26
function firstNumberFullfill(array: Array<any>,checkFunc: (num: number) => boolean):number|string{
27
for(let a of array){
28
if(checkFunc(a)){
29
return a;
30
}
31
}
32
return "no number found";
33
}
34
35
My IsNaN says “12ab” is a number but at the first Non-Number argument its the first non-number, i used the isNaN function twice so idk why it doesnt work
Advertisement
Answer
You’re not comparing the same values here: the first check (saveNumbers
) tests isNaN(parseInt("12ab"))
while the second tests isNaN("12ab")
.
saveNumbers
will parse “12ab” and return 12, which is a number and not NaN
, while isNaN("12ab")
will show that the String you pass is indeed NaN
.