ThatManK Mobile Article

字面量类型

Category: TS Tutorial: TS初级一 Published: 2026-04-07 13:58 Views: 20 Likes: 0 Comments: 0
  1. 字面量类型
let str1: string = "hi";

const str2 = "hi";

let age: 18 = 18;

function changeDirection(dir: "left" | "right" | "up" | "down") {
  console.log(dir);
}

// 只能传上面四个参数
changeDirection("left");