1. isNaN()是一个函数,用isNaN判断一个变量,返回一个Boolean值。若返回的值为false,则为可以转换成数字类型;返回的值是true,则不能转换成数字类型。(NaN:not a number,不能转换为一个数字,NaN和任何值都不相等,包括NaN自己本身)
console.log(isNaN("123"));
console.log(isNaN(123));
返回值均为false,虽然“123”是字符串类型,但由于它是纯数字组成的字符串,可以转换为一个数字,所以返回值为false。
console.log(isNaN("abc"))
返回值为true,不是一个数字类型且无法转换为一个数字。
2.typeof()判断
typeof(num)==="number")&&(num!==Infinity)&&!isNaN(num)
3. typeof能够得到哪些值
- number
typeof(10);
typeof(NaN);
//NaN在JavaScript中代表的是特殊非数字值,它本身是一个数字类型。
typeof(Infinity);
2.boolean
typeof(true);
typeof(false);
3.string
typeof("abc");
4.undefined
typeof(undefined);
typeof(a);//不存在的变量
5.object
对象,数组,null返回object
typeof(null);
typeof(window);
6.function
typeof(Array);
typeof(Date);