interface User { | |
readonly id: number; | |
name: string; | |
} | |
const user: User = { | |
id: 1, | |
name: "Keerati" | |
}; | |
user.id++; // cannot assign to 'id' because it is a read-only property. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment