Basics

Challenges

Classes

Cookies

Debugging

Events

External Files

Flow Control

Forms

Functions

Html Elements

Installation

Interfaces

Keywords

Modules

Namespaces

Operators

Reference Files

String

Types

TypeScript - Data Type Examples


var age : number = 48;
var name : string = “Ricky Bobby”;
var isFast : boolean = true;
var names : string[] = [“Ricky, Bobby”];
var firstPerson : string = name [0];

var isSpaceship = function(){... logic here… return results;};