js資料型別知識點

2021-10-09 15:56:31 字數 1061 閱讀 7693

數字型別     number

字串 string

布林 boolean

空 null

未定義 undefined

物件 object

操作符 typeof 檢視資料型別

1:數字型別 number

number()           把其他型別強制轉換成數字型別

parseint() 取整/把其他型別強制轉換成數字型別

parsefloat() 取小數/把其他型別強制轉換成數字型別

'123哈哈'這個字串可以通過parseint和parsefloat方法,

把裡面的數字取出(只限數字開頭)

isnan() 數字放到這個方法裡面的返回乙個false,不是數字返回true

nan(特殊的數字型別) nan永遠不等於nan(不管是==,===)

2:字串 string

tostring() string()把其他型別強制轉換成字串型別

length 這個屬性可以獲得字串的長度

在字串中空格也佔位置

被引號包圍的值,就是字串型別

3:布林 boolean

資料型別 	轉換為true的值 	轉換為false的值

boolean true false

number 任何非零數字值 (包括無窮大) 0和nan

object 任何物件 null

undefined n/a① undefined

true false

1 0

真 假

對 錯

資料型別知識點(一)

1.位 位元組 字 半字之間的關係 1位元組 8位,1字 4位元組,1半字 2位元組 2.sizeof要點 1 sizeof不是函式,而是運算子,它的作用是測量變數或資料型別在記憶體中佔的位元組數。2 sizeof 變數 sizeof 變數 此方法僅適用於變數的測量 sizeof 資料型別 3.in...

C 資料型別轉換知識點

include using namespace std class father 基本型別 類型別 include using namespace std class myclass 基本型別 類型別 void operator int num 類型別 基本型別 operator int void ...

MySQL知識點總結 四 資料型別

型別 大小範圍 有符號 範圍 無符號 用途tinyint 1 位元組 128,127 0,255 小整數值 smallint 2 位元組 32 768,32 767 0,65 535 大整數值 mediumint 3 位元組 8 388 608,8 388 607 0,16 777 215 大整數值...