2014-08-14 14:12:50 +04:00
---
language: TypeScript
contributors:
2014-09-01 12:51:43 +04:00
- ["Philippe Vlérick", "https://github.com/pvlerick"]
2014-08-27 18:14:57 +04:00
filename: learntypescript.ts
2014-08-14 14:12:50 +04:00
---
TypeScript is a language that aims at easing development of large scale applications written in JavaScript.
TypeScript adds common concepts such as classes, modules, interfaces, generics and (optional) static typing to JavaScript.
2014-09-01 12:51:43 +04:00
It is a superset of JavaScript: all JavaScript code is valid TypeScript code so it can be added seamlessly to any project. The TypeScript compiler emits JavaScript.
2014-08-14 14:12:50 +04:00
2016-06-26 16:03:09 +03:00
This article will focus only on TypeScript extra syntax, as opposed to [JavaScript ](javascript.html.markdown ).
2014-08-14 14:12:50 +04:00
2014-08-14 17:40:21 +04:00
To test TypeScript's compiler, head to the [Playground] (http://www.typescriptlang.org/Playground) where you will be able to type code, have auto completion and directly see the emitted JavaScript.
2014-08-14 15:34:41 +04:00
2016-11-20 22:31:22 +03:00
```ts
2015-03-10 23:09:35 +03:00
// There are 3 basic types in TypeScript
2017-05-25 18:35:08 +03:00
let isDone: boolean = false;
let lines: number = 42;
let name: string = "Anders";
// But you can omit the type annotation if the variables are derived from explicit literals
let isDone = false;
let lines = 42;
let name = "Anders";
2014-08-14 14:12:50 +04:00
2015-03-10 23:09:35 +03:00
// When it's impossible to know, there is the "Any" type
2017-05-25 18:35:08 +03:00
let notSure: any = 4;
2014-08-14 14:12:50 +04:00
notSure = "maybe a string instead";
notSure = false; // okay, definitely a boolean
2017-05-25 18:35:08 +03:00
// Use const keyword for constant variables
const numLivesForCat = 9;
numLivesForCat = 1; // Error
2015-03-10 23:09:35 +03:00
// For collections, there are typed arrays and generic arrays
2017-05-25 18:35:08 +03:00
let list: number[] = [1, 2, 3];
2015-03-10 23:09:35 +03:00
// Alternatively, using the generic array type
2017-05-25 18:35:08 +03:00
let list: Array< number > = [1, 2, 3];
2014-08-14 14:12:50 +04:00
2015-03-10 23:09:35 +03:00
// For enumerations:
2017-05-25 18:35:08 +03:00
enum Color { Red, Green, Blue };
let c: Color = Color.Green;
2014-08-14 14:12:50 +04:00
2015-03-10 23:09:35 +03:00
// Lastly, "void" is used in the special case of a function returning nothing
2014-08-14 14:12:50 +04:00
function bigHorribleAlert(): void {
alert("I'm a little annoying box!");
}
2015-03-10 23:09:35 +03:00
// Functions are first class citizens, support the lambda "fat arrow" syntax and
// use type inference
2017-08-23 11:14:39 +03:00
// The following are equivalent, the same signature will be inferred by the
2015-03-10 23:09:35 +03:00
// compiler, and same JavaScript will be emitted
2017-05-25 18:35:08 +03:00
let f1 = function (i: number): number { return i * i; }
2015-03-10 23:09:35 +03:00
// Return type inferred
2017-05-25 18:35:08 +03:00
let f2 = function (i: number) { return i * i; }
2016-11-20 23:41:16 +03:00
// "Fat arrow" syntax
2017-05-25 18:35:08 +03:00
let f3 = (i: number): number => { return i * i; }
2016-11-20 23:41:16 +03:00
// "Fat arrow" syntax with return type inferred
2017-05-25 18:35:08 +03:00
let f4 = (i: number) => { return i * i; }
2016-11-20 23:41:16 +03:00
// "Fat arrow" syntax with return type inferred, braceless means no return
// keyword needed
2017-05-25 18:35:08 +03:00
let f5 = (i: number) => i * i;
2014-08-14 17:40:21 +04:00
2015-03-10 23:09:35 +03:00
// Interfaces are structural, anything that has the properties is compliant with
// the interface
2014-08-14 14:12:50 +04:00
interface Person {
name: string;
2015-03-10 23:09:35 +03:00
// Optional properties, marked with a "?"
2014-08-14 17:40:21 +04:00
age?: number;
2015-03-10 23:09:35 +03:00
// And of course functions
2014-08-27 17:41:12 +04:00
move(): void;
2014-08-14 17:40:21 +04:00
}
2015-03-10 23:09:35 +03:00
// Object that implements the "Person" interface
// Can be treated as a Person since it has the name and move properties
2017-05-25 18:35:08 +03:00
let p: Person = { name: "Bobby", move: () => { } };
2015-03-10 23:09:35 +03:00
// Objects that have the optional property:
2017-05-25 18:35:08 +03:00
let validPerson: Person = { name: "Bobby", age: 42, move: () => { } };
2015-03-10 23:09:35 +03:00
// Is not a person because age is not a number
2017-05-25 18:35:08 +03:00
let invalidPerson: Person = { name: "Bobby", age: true };
2014-08-14 14:12:50 +04:00
2015-03-10 23:09:35 +03:00
// Interfaces can also describe a function type
2014-08-14 14:12:50 +04:00
interface SearchFunc {
(source: string, subString: string): boolean;
}
2015-03-10 23:09:35 +03:00
// Only the parameters' types are important, names are not important.
2017-05-25 18:35:08 +03:00
let mySearch: SearchFunc;
mySearch = function (src: string, sub: string) {
2014-08-14 17:40:21 +04:00
return src.search(sub) != -1;
2014-08-14 14:12:50 +04:00
}
2015-03-10 23:09:35 +03:00
// Classes - members are public by default
2014-08-14 17:40:21 +04:00
class Point {
2015-03-10 23:09:35 +03:00
// Properties
2015-11-28 02:30:23 +03:00
x: number;
2015-03-11 00:58:18 +03:00
2015-11-28 02:30:23 +03:00
// Constructor - the public/private keywords in this context will generate
// the boiler plate code for the property and the initialization in the
// constructor.
// In this example, "y" will be defined just like "x" is, but with less code
// Default values are also supported
2015-03-10 23:09:35 +03:00
2015-11-28 02:30:23 +03:00
constructor(x: number, public y: number = 0) {
this.x = x;
}
2015-03-11 00:58:18 +03:00
2015-11-28 02:30:23 +03:00
// Functions
dist() { return Math.sqrt(this.x * this.x + this.y * this.y); }
2015-03-11 00:58:18 +03:00
2015-11-28 02:30:23 +03:00
// Static members
static origin = new Point(0, 0);
2014-08-14 17:40:21 +04:00
}
2014-08-14 14:12:50 +04:00
2017-05-25 18:35:08 +03:00
let p1 = new Point(10, 20);
let p2 = new Point(25); //y will be 0
2014-08-14 17:56:30 +04:00
2015-03-10 23:09:35 +03:00
// Inheritance
2014-08-14 17:56:30 +04:00
class Point3D extends Point {
2015-11-28 02:30:23 +03:00
constructor(x: number, y: number, public z: number = 0) {
super(x, y); // Explicit call to the super class constructor is mandatory
}
2015-03-11 00:58:18 +03:00
2015-11-28 02:30:23 +03:00
// Overwrite
dist() {
2017-05-25 18:35:08 +03:00
let d = super.dist();
2015-11-28 02:30:23 +03:00
return Math.sqrt(d * d + this.z * this.z);
}
2014-08-14 17:56:30 +04:00
}
2015-03-10 23:09:35 +03:00
// Modules, "." can be used as separator for sub modules
2014-08-27 17:41:12 +04:00
module Geometry {
export class Square {
constructor(public sideLength: number = 0) {
}
area() {
return Math.pow(this.sideLength, 2);
}
}
}
2017-05-25 18:35:08 +03:00
let s1 = new Geometry.Square(5);
2014-08-27 17:41:12 +04:00
2015-03-10 23:09:35 +03:00
// Local alias for referencing a module
2014-08-27 17:41:12 +04:00
import G = Geometry;
2017-05-25 18:35:08 +03:00
let s2 = new G.Square(10);
2014-08-14 14:12:50 +04:00
2015-03-10 23:09:35 +03:00
// Generics
// Classes
2014-08-31 19:57:44 +04:00
class Tuple< T1 , T2 > {
2015-11-28 02:30:23 +03:00
constructor(public item1: T1, public item2: T2) {
}
2014-08-31 19:57:44 +04:00
}
2015-03-10 23:09:35 +03:00
// Interfaces
2014-08-31 19:57:44 +04:00
interface Pair< T > {
2015-11-28 02:30:23 +03:00
item1: T;
item2: T;
2014-08-31 19:57:44 +04:00
}
2015-03-10 23:09:35 +03:00
// And functions
2017-05-25 18:35:08 +03:00
let pairToTuple = function < T > (p: Pair< T > ) {
2015-11-28 02:30:23 +03:00
return new Tuple(p.item1, p.item2);
2014-08-31 19:57:44 +04:00
};
2017-05-25 18:35:08 +03:00
let tuple = pairToTuple({ item1: "hello", item2: "world" });
2014-08-14 15:34:41 +04:00
2015-03-10 23:09:35 +03:00
// Including references to a definition file:
2014-08-14 17:40:21 +04:00
/// < reference path = "jquery.d.ts" / >
2015-10-19 16:09:58 +03:00
// Template Strings (strings that use backticks)
2015-10-19 18:40:57 +03:00
// String Interpolation with Template Strings
2017-05-25 18:35:08 +03:00
let name = 'Tyrone';
let greeting = `Hi ${name}, how are you?`
2015-10-19 06:38:56 +03:00
// Multiline Strings with Template Strings
2017-05-25 18:35:08 +03:00
let multiline = `This is an example
2015-10-19 06:38:56 +03:00
of a multiline string`;
2015-10-19 06:32:14 +03:00
2014-08-14 17:40:21 +04:00
```
2014-08-14 14:12:50 +04:00
## Further Reading
* [TypeScript Official website] (http://www.typescriptlang.org/)
2016-04-26 02:59:06 +03:00
* [TypeScript language specifications] (https://github.com/Microsoft/TypeScript/blob/master/doc/spec.md)
2014-08-14 14:12:50 +04:00
* [Anders Hejlsberg - Introducing TypeScript on Channel 9] (http://channel9.msdn.com/posts/Anders-Hejlsberg-Introducing-TypeScript)
2014-08-14 17:40:21 +04:00
* [Source Code on GitHub] (https://github.com/Microsoft/TypeScript)
* [Definitely Typed - repository for type definitions] (http://definitelytyped.org/)