TypeScript
TypeScript is an actively used programming language created in 2012.
7Years Old | 17,995Users | 974Jobs |
- TypeScript ranks in the top 5% of languages
- the TypeScript website
- the TypeScript wikipedia page
- TypeScript first appeared in 2012
- the TypeScript team is on twitter
- tryitonline has an online TypeScript repl
- See also: javascript, java, csharp, delphi, turbo-pascal, jquery, mongodb, d3, visual-studio-editor, eclipse-editor, emacs-editor, vim-editor, sublime-editor, visual-studio-code-editor, ecmascript, maven-pom, dart, coffeescript, elm
- I have 74 facts about TypeScript. just email me if you need more.
Example code from the Hello World Collection:
// Hello world in TypeScript alert('Hello world!');
Example code from Linguist:
console.log("Hello, World!");
Example code from Wikipedia:
class Person { private name: string; private age: number; private salary: number; constructor(name: string, age: number, salary: number) { this.name = name; this.age = age; this.salary = salary; } toString(): string { return `${this.name} (${this.age}) (${this.salary})`; // As of version 1.4 } }Edit
Last updated February 11th, 2019