Typescript
TypeScript is a strongly typed, object-oriented programming language that is designed to be compiled into JavaScript. It is a superset of JavaScript, which means that any valid JavaScript code is also valid TypeScript code.
TypeScript adds static typing to JavaScript, which means that variables must be declared with a specific type. This helps to catch errors at compile time, rather than at runtime.
let person: { name: string; age: number; isStudent: boolean } = {
name: "John",
age: 30,
isStudent: true,
}
console.log(person);