A list of reasons for why I like to use TypeScript - Part One
With this article I like to post my thoughts about TypeScript and some of the advantages of the language that I use on my everyday programming tasks.
- Types, types, types
Who does not know or have not implemented code like the following in JavaScript:
1
2
3
4
5
6
7
8
9
10
11
var person = {
firstname: "Christos",
lastname: "Monogios"
};
// Lines of code...
person.skills = ["TypeScript"];
console.log(person);