Answers for "ts version"

1

ts version

npm install -g typescript
Posted by: Guest on May-01-2020
13

what is typescript

Basically, TypeScript is like an extension or "superset" of JavaScript.
Since JavaScript is a loosely typed language,
TypeScript enforces the strict use of types. 
Thus, making it a strictly typed language.
Posted by: Guest on December-03-2020
2

typescript

interface LabelledValue {
  label: string;
}

function printLabel(labelledObj: LabelledValue) {
  console.log(labelledObj.label);
}

let myObj = {size: 10, label: "Size 10 Object"};
printLabel(myObj);
Posted by: Guest on September-04-2020

Code answers related to "TypeScript"

Browse Popular Code Answers by Language