mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-20 03:14:06 -06:00
12 lines
138 B
TypeScript
12 lines
138 B
TypeScript
const today = new Date();
|
|
today.getMonth();
|
|
|
|
const person = {
|
|
age: 20
|
|
};
|
|
person.age += 1;
|
|
|
|
class Colour {
|
|
|
|
}
|
|
const red = new Colour(); |