js資料型別與字面量

2021-10-21 09:02:41 字數 1784 閱讀 7348

1.字面量 : 可以直接使用的資料  (能夠被編譯器識別的資料)

* 哪些資料可以被識別 : 必須要符合js的資料型別

2.資料型別 : js**在執行時會產生不同的資料,不同的資料儲存與處理方式不一樣,所以要對資料進行分類,稱之為資料型別。

*js資料型別一起有6種,分為兩大類

a.基本資料型別

(5種)

b.複雜資料型別

(1種) object。裡面包含的 function、array、date。

3.基本資料型別 :(1

)字串型別

(string)

: 一切以單引號'' 或 雙引號"" 引起來的內容

* 作用:用於展示文字

console.

log(

"張三");

console.

log(

'123');

console.

log("")

;//空字串(2

)數值型別

(number)

: 一切數學中的數字

*作用:用於數學計算(3

)布林型別

(boolean)

: 只有兩個值 true

(真)false

(假)*

作用:用於表示事物對立面

(條件成立 / 條件不成立)

小技巧 : 谷歌控制台, 字串會顯示黑色 , 數字和布林會顯示藍色(4

) undefined型別 : 變數只有宣告,沒有賦值

let num;

console.

log( num );(

5)null型別 : 變數賦值為null

* 作用:不確定未來是什麼資料型別

1.typeof關鍵字

console.

log(

typeof

123)

;// "number"

console.

log(

typeof

'123');

// "string"

console.

log(

typeof

true);

// "boolean"

console.

log(

typeof

null);

// "object":一類特殊物件

console.

log(

typeof undefined)

;// "undefined"

console.

log(

typeof

true);

//boolean

console.

log(

typeof

"true");

//string

console.

log(

typeof

(typeof

true))

;//string

console.

log(

typeof

(typeof

"true"))

;//string

2、tostring ( )

js資料型別轉換與字面量

方式 說明例子 tostring 轉成字串 var num 1 alert num.tostring string 強制轉換 轉成字串 var num 1 alert string num 加號拼接字串 和字串拼接的結果都是字串 var num 1 alert num 我是字串 注 建議使用第三種轉...

vfp字元轉換數值 JS資料型別轉換與字面量

方式說明例子tostring 轉成字串var num 1 alert num.tostring string 強制轉換轉成字串var num 1 alert string num 加號拼接字串和字串拼接的結果都是字串var num 1 alert num 我是字串 注 建議使用第三種轉換方式,這種方...

資料表示字面量整型字面量

編寫程式,首先面對的是資料。在程式中,資料該如何表示出來?根據表示的方式不同,資料通常有兩種表示方式 直觀表示和指代表示。本章將詳細講解這兩種表示方式本文選自明明白白學c 大學霸。在 編寫中,資料往往是可以直接寫到 中的。對於這些資料,人們可以通過字面所表達的意思,獲知其含義,所以它們也被稱為字面量...