iT邦幫忙

2023 iThome 鐵人賽

DAY 5
0
自我挑戰組

菜鳥建立自信心系列 第 5

Javascript類型轉換 - String( ) toString( )

  • 分享至 

  • xImage
  •  

將資料類型轉換為字串類型
先介紹toString()
數值、布林值,可以利用toString()轉換成字串,根據原型資料去創造一個字串

由於null以及undefined沒有toString()這個方法,因此產生錯誤

let a = true;
a = a.toSting();
console.log(typeof a, a) //輸出 "string" "true"

let b = null;
b = b.toSting();
console.log(typeof b, b) //輸出 Uncaught TypeError: Cannnot read properties of null (reading 'toString')

let c = undefined;
c = c.toString();
console.log(typeof c, c) //輸出 Uncaught TypeError: Cannnot read properties of undefined (reading 'toString')

緊接著說明String()
數值、布林值,String()可以轉換成字串,根據原型資料去創造一個字串

對於null,則直接轉為"null"
對於undefined,則直接轉為"undefined"

let a = 46
a = String(a)
console.log(typeof a, a) //輸出 "string" "46"

let b = null
b = String(b)
console.log(typeof b, b) //輸出 "string" "null"

let c = undefined
c = String(c)
console.log(typeof c, c) //輸出 "string" "undefined"

上一篇
Javascript類型轉換 - Number( ) parseInt( )
下一篇
MVC架構
系列文
菜鳥建立自信心30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言