美文网首页
2018.7.14隐式转换结论

2018.7.14隐式转换结论

作者: 喜欢暗杠 | 来源:发表于2018-07-15 22:08 被阅读0次

1、数字+字符串:

将数字转换为字符串

2、数字+boolean:

将boolean转换为number类型

3、数字+undefined:

结果为NaN,NaN的类型为number

4、字符串+boolean:

将boolean转换为字符串

5、boolean+boolean:

都转换成number在做相加运算

注:NaN:notanumber判断一个非数字如果不是一个数字返回true,如果是一个数字返回false

varstr="helloworld";
varstr1=isNaN(str);
console.log(str1);

显示转换

强制转换

1.toString()将任意类型转换为字符串类型

varnum=5;
varstr=num.toString();
console.log(typeofstr);

2.parseInt();将一个数据转换为整数

varnum=5.5;
varstr=parseInt(num);
console.log(str);
console.log(typeofstr);//number

3.parseFloat()将一个数据转换为小数

varnum=.5;
varstr=parseFloat(num);
console.log(typeofstr);
console.log(typeofstr);//number

4.Number将一个数据转换为number类型

varstr="35.5";
varstr1=Number(str);
console.log(str);

相关文章

  • 2018.7.14隐式转换结论

    1、数字+字符串: 将数字转换为字符串 2、数字+boolean: 将boolean转换为number类型 3、数...

  • js总结(2.转换)

    转换 1.隐式转换结论 2.显示转换/强制转换

  • javaspcript 类型的转换

    隐式转换结论 1. number + string :将数字转换为字符串 2.number + boolean :...

  • 隐式转换

    隐式转换结论 1、数字 + 字符串 :将数字转换为字符串 2、数字 + boolean :将 boolean 转换...

  • 数据类型的转换

    隐式转换结论 1、数字 + 字符串 :将数字转换为字符串 2、数字 + boolean :将 boolean 转换...

  • 第三天

    隐式转换结论 1、数字 + 字符串 :将数字转换为字符串 2、数字 + boolean :将 boolean 转换...

  • 2018-07-11

    隐式转换结论 1、数字 + 字符串 :将数字转换为字符串 2、数字 + boolean :将 boolean 转换...

  • ☝(•̀˓◞•́)哎呦

    隐式转换结论 1、数字 + 字符串 :将数字转换为字符串 2、数字 + boolean :将 boolean 转换...

  • ☝(•̀˓◞•́)哎呦

    隐式转换结论 1、数字 + 字符串 :将数字转换为字符串 2、数字 + boolean :将 boolean 转换...

  • javascript第二章

    ⒈隐式转换结论 ①number+string:将数字转换为字符串 ②number+boolean:将布尔转换为数字...

网友评论

      本文标题:2018.7.14隐式转换结论

      本文链接:https://www.haomeiwen.com/subject/gxdmpftx.html