转数值(把其他数据类型转换成数值类型)
1、Number()//纯数字会转换成数字,非纯数字会转成NaN(不是数字)
var a='100abc';
var b='100'
var a1=Number(a);
var b1=Number(b);
console.log(a1,typeof a,typeof a1)
console.log(b1,typeof b,typeof b1)
结果:
2、parseInt()//按顺序检测,是数字就保留,是字母就舍弃,开头是字母则直接返回NaN,不能保留小数点后面的值
var a='100abc';
var b='100';
var c='abc100'
var d='100abc100'
var a1=parseInt(a);
var b1=parseInt(b);
var c1=parseInt(c);
var d1=parseInt(d);
console.log(a1,typeof a,typeof a1)
console.log(b1,typeof b,typeof b1)
console.log(c1,typeof c,typeof c1)
console.log(d1,typeof d,typeof d1)
结果:
3、parseFloat()//按顺序检测,是数字就保留,是字母就舍弃,开头是字母则直接返回NaN,可保留小数点后面的值
var a='100abc';
var b='100.234';
var c='abc100'
var d='100abc100'
var a1=parseFloat(a);
var b1=parseFloat(b);
var bb1=parseInt(b);
var c1=parseFloat(c);
var d1=parseFloat(d);
console.log(a1,typeof a,typeof a1)
console.log(b1,typeof b,typeof b1)
console.log(bb1,typeof b,typeof b1,'parseInt只保留整数')
console.log(c1,typeof c,typeof c1)
console.log(d1,typeof d,typeof d1)
结果:
转字符串(把其他数据类型转换成字符串类型)
1、String()//所有的类型都将转为普通字符
var a=true;
var b=100;
var a1=String(a);
var b1=String(b);
console.log(a1,typeof a,typeof a1);
console.log(b1,typeof b,typeof b1);
结果:
2、toString()
var a=true;
var b=100;
var a1=a.toString();
var b1=b.toString();
console.log(a1,typeof a,typeof a1);
console.log(b1,typeof b,typeof b1);
结果:
转布尔(把其他数据类型转换成布尔类型)
1、Boolean()[只有0,NaN,'',underfined,null这五个值会被转换成false,其他的都为true]
var a=0;
var b=NaN;
var c='';
var d=undefined;
var e=null;
var f=1;
var g='abc';
var h=' ';//有空格
var a1=Boolean(a);
var b1=Boolean(b);
var c1=Boolean(c);
var d1=Boolean(d);
var e1=Boolean(e);
var f1=Boolean(f);
var g1=Boolean(g);
var h1=Boolean(h);
console.log(a1,typeof a,typeof a1);
console.log(b1,typeof b,typeof b1);
console.log(c1,typeof c,typeof c1);
console.log(d1,typeof d,typeof d1);
console.log(e1,typeof e,typeof e1);
console.log(f1,typeof f,typeof f1);
console.log(g1,typeof g,typeof g1);
console.log(h1,typeof g,typeof h1,'引号里有空格也算有值,会返回true');
结果: