1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-12 01:34:19 +02:00

Added typescript-pt.html.markdown (#1699)

* link for learning of javascript adjusted

* Added typescript-pt.html.markdown
This commit is contained in:
Gabriel Gomes
2016-06-26 10:03:09 -03:00
committed by ven
parent 41cf3e7421
commit d9caa2436e
2 changed files with 180 additions and 1 deletions

View File

@@ -9,7 +9,7 @@ TypeScript is a language that aims at easing development of large scale applicat
TypeScript adds common concepts such as classes, modules, interfaces, generics and (optional) static typing to JavaScript.
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.
This article will focus only on TypeScript extra syntax, as opposed to [JavaScript] (../javascript/).
This article will focus only on TypeScript extra syntax, as opposed to [JavaScript](javascript.html.markdown).
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.