js数据类型

js 基本数据类型:undefined、Null、Boolean、Number、String

js 操作符:typeof检测给定变量的数据类型。返回值表示的类型

undefined、值未定义。

boolean、值为布尔类型。

string、值为字符串。

number、值为数字。

object、值为对象或null。

function、值为函数。


js数值转换

3个函数可以把非数值转换为数值:number()、parseInt()、parseFloat()


循环

do_while 语句

do{
    statement
}while(expection)


while语句

while(expection){statement}


for语句

for(init;expection;post-loop-expection){statement}


for-in语句

for(property in  expection)statement 用来枚举对象的属性


label标签语句

label:statement

eg:   start:for(var i in list){statement}


break和continue语句

break跳出整个循环;continue跳出当前循环.

break和continue可以和label语句联合使用,返回代码块中的指定位置.


switch case 语句

switch(expection){

case value: statement; break;

defaule: statement;

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值