Visual Portfolio, Posts & Image Gallery for WordPress

TypeScript 筆記 – 常見的 types

Date May 22, 2024
這篇來簡單筆記一下 TypeScript 中常用到的 types,以及常見的資料結構要怎麼用 type 來表示。 1. Primitives 1.1 string…

TypeScript 筆記 – Enum

Date April 28, 2024
Enum 用來宣告一群 const,也就是一些不會變動的值,比較常用到的地方像是:處理狀態(success, processing, failed)、使用狀態(active, inactive, deleted)、角色(admin, general_user)等等。 1. Enum…
Scroll to Top