typeof运算符
typeof运算符可以在程序运行阶段动态获取变量的数据类型,
其运算结果是以下六个字符串之一
“undefined”
“number”
“string”
“booleaan”
“object”
“function”
sc中比较string类型的方法是“ ==”
function sum(a,b) {
if (typeof a =="number" && typeof b =="number"){
return a + b ;
}
}
isNAN paseInt paseFloat Math.ceil函数
1.isNAN返回true表示该数据不是数字。
2.paseInt将字符串转化为数字,并且取整(向下)
var i = "3.1415926";
i = parseInt(i); //3
alert(i)
3.paseFloat将字符串转化为数字
var a = "3.14";
a = parseFloat(a); //3.14
alert(a);
4.Math.ceil函数
对数字进行向上取整
alert(Math.ceil(3.14)); //4