null
、undefined
string
、number
、boolean
bigint
、symbol
object
(含 Array、Function、Date、RegExp ...)void
、never
、enum
、unknown
、any
自定义类型type
、interface
const num = 42;
console.log(num.toFixed(2)); // '42.00'
上边代码所做操作:
JS 中 Number、String、Boolean 只用于包装对象。一般情况下不用它们 在 TS 中也不用,而是用小写 number、string、boolean