2025-09-04 18:14
Status: child
Tags: typescript computer-science
Objects in Typescript
Code
let car: {
brand: string;
year: number;
} = {
brand: "toyota",
year: 2020
}
2025-09-04 18:14
Status: child
Tags: typescript computer-science
let car: {
brand: string;
year: number;
} = {
brand: "toyota",
year: 2020
}