js 基本資料型別:undefined、null、boolean、number、string
js 操作符:typeof檢測給定變數的資料型別。返回值表示的型別
undefined、值未定義。
boolean、值為布林型別。
string、值為字串。
number、值為數字。
object、值為物件或null。
function、值為函式。
js數值轉換
3個函式可以把非數值轉換為數值:number()、parseint()、parsefloat()
迴圈 do_while 語句
dowhile(expection)
while語句
while(expection)
for語句
for(init;expection;post-loop-expection)
for-in語句
for(property in expection)statement 用來列舉物件的屬性
label標籤語句
label:statement
eg: start:for(var i in list)
break和continue語句
break跳出整個迴圈;continue跳出當前迴圈.
break和continue可以和label語句聯合使用,返回**塊中的指定位置.
switch case 語句
switch(expection)
js資料型別
一.原始資料型別 1.typeof 運算子。var a alert typeof a 輸出結果為 undefined 2.undefined 未定義 型別 當變數未定義時,該變數值被預設為undefined 如 var a alert typeof a 輸出結果為 undefined 注意值unde...
js資料型別
var num 1,boo true,aa null,bb,str mary arr 1,2,4,8 obj arrnew new array 1,2,3 strnew new string 1,2,3 用 typeof 檢測變數的型別 console.log number typeof num n...
js資料型別
function show x function console.log typeof 1,a true object console.log typeof object console.log typeof null object console.log typeof new number 10 ...