码迷,mamicode.com
首页 > Web开发 > 详细

关于js类型转换

时间:2020-07-03 15:23:39      阅读:71      评论:0      收藏:0      [点我收藏+]

标签:als   对比   字母   ||   style   eof   fine   net   amp   

类型转换:
typeof返回的值的类型是String


显示类型转换


Number(mix)

parseInt(string,radix)

perseFloat(string)

toString((radix)         null undefind不可以使用,报错

String(mix)

Boolean()

隐藏类型转换
isNaN() 判断是不是NaN,字母也是Nan Number(‘‘)与NaN对比

++ -- 正(+) 负(-) * 减号 % =====》Number

加号 String

&& ||

< <= > >=
== !=

类型转换题

alert(typeof(a))==============>undefined
alert(typeof(typeof(a)))========string
alert(typeof(undefined))============>undefined
alert(typeof(‘undefined‘))============>string

alert(typeof(NaN))==========>number

alert(typeof(null))============>object

var a=‘123abc‘
alert(typeof(+a))==========number
alert(typeof(!!a))==========boolean
alert(typeof(a+‘‘))==========string

alert(1==‘1‘)===========true
alert(NaN==NaN)======false
alert(Nan==undefined)========false
alert(‘11‘+11)===========1111
alert(1===‘1‘)===========false
alert(paseInet(‘123abc‘))======123

var num=123123.3456789
alert(num.toFixed(3))=======123123.346

 

关于js类型转换

标签:als   对比   字母   ||   style   eof   fine   net   amp   

原文地址:https://www.cnblogs.com/lixintao/p/13230307.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!