博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
js中关于数据类型的转换
阅读量:5239 次
发布时间:2019-06-14

本文共 679 字,大约阅读时间需要 2 分钟。

* 一、转化为数字*/

console.log(‘123123’*1.0);

/* 二、从一个值中提取另一中类型的值,并完成转化工作 */

console.log(parseInt(‘1233zxhag’)); //1233
console.log(parseFloat(‘1.123aef’)); //1.123
console.log(eval(1+123)); //124
console.log(toString(123)); //[object Window] ‘123’

/* 将整个值从一种类型转化成另一种类型(称作基本类型转换) */

console.log(String(‘123123′));
console.log(String(null)); //null
console.log(String(undefined)); //undefined
console.log(Number(‘123123′));
console.log(Number(null)); // 0
console.log(Number(undefined)); //NaN
console.log(Boolean(123123)); //true
console.log(Boolean(null)); //false
console.log(Boolean(undefined)); //false

本文转自(http://dayney.com/?p=38)

转载于:https://www.cnblogs.com/dayney/p/4618186.html

你可能感兴趣的文章
jquery mobile
查看>>
如何在vue单页应用中使用百度地图
查看>>
Springboot使用步骤
查看>>
Spring属性注入
查看>>
Springboot-配置文件
查看>>
Springboot-日志框架
查看>>
SpringBoot-thymeleaf
查看>>
P1192-台阶问题
查看>>
一、使用pip安装Python包
查看>>
spring与quartz整合
查看>>
Kattis之旅——Eight Queens
查看>>
3.PHP 教程_PHP 语法
查看>>
Duilib扩展《01》— 双击、右键消息扩展
查看>>
利用Fiddler拦截接口请求并篡改数据
查看>>
python习题:unittest参数化-数据从文件或excel中读取
查看>>
Android控件之GridView探究
查看>>
在工程中要加入新的错误弹出方法
查看>>
PS 滤镜— — sparkle 效果
查看>>
snmpwalk命令常用方法总结
查看>>
网站产品设计
查看>>