Class (1)
การสร้าง Class
class Car {
year: number
color: "green" | "red" | "blue"
}
const c = new Car() // สร้างด้วยคีย์เวิร์ด new
c.year = 2560 // อ่านหรือเขียน year ได้ ตาม type ที่กำหนด
c.color = "red"class Car {
year: number = 2540 // ให้ค่าเริ่มต้นของ year เป็น 2540
color: "green" | "red" | "blue"
}
const c = new Car()
console.log(c.year) // 2540Method
Readonly
สร้าง Class ที่ Implement ตัว Interface
สร้าง Class ที่ Extend อีก Class หนึ่ง
Last updated