TypeScript 字面量型別

洛飞發表於2024-09-29

先看兩端程式碼

let str = "hello"
const str1:string = "hello"
const str2 = "hello"

在上述程式碼中用let宣告的變數是字元型別的

而用const 沒有指定型別的話,其是字面量型別,不能隨意進行變更。

相關文章