TypeScript–Surprisingly Simple, Extraordinarily Powerful– Part 7 August 21, 2020 Unit Testing: TypeScript is just an extension of JavaScript hence we can use any of the existing testing frameworks available today li...Read More
TypeScript–Surprisingly Simple, Extraordinarily Powerful– Part 6 August 21, 2020 Use TypeScript with Jquery, Knockout and other libraries TypeScript does not stop at helping us to write JavaScript code, it also has ...Read More
TypeScript–Surprisingly Simple, Extraordinarily Powerful– Part 5 August 21, 2020 Modules Modules help us separate different units of work in an application. It basically allows us to follow the “separation of concer...Read More
TypeScript–Surprisingly Simple, Extraordinarily Powerful– Part 4 August 21, 2020 Classes and Interfaces: TypeScript has built-in support for classes. Class is similar to what we see in C#/Java. Classes are used to e...Read More
TypeScript–Surprisingly Simple, Extraordinarily Powerful– Part 3 August 21, 2020 FUNDAMENTALS Before we start with the fundamentals I would like to reiterate that TypeScript is just an extension of JavaScript, it do...Read More
TypeScript–Surprisingly Simple, Extraordinarily Powerful– Part 2 August 21, 2020 Configuring TypeScript in VS TypeScript though created by Microsoft is an Open Source framework and is no way ties to Microsoft techn...Read More
TypeScript–Surprisingly Simple, Extraordinarily Powerful– Part 1 August 21, 2020 Introduction on what TypeScript is and why should we look at it JavaScript(JS) can be messy, until and unless we are only using JavaSc...Read More
TypeScript–Surprisingly Simple, Extraordinarily Powerful August 21, 2020 I came to know about TypeScript when I was going through MSDN articles were one of the Microsoft employees (don’t remember his name and ...Read More
CoffeeScript vs TypeScript August 21, 2020 Abstract This point of view intends to provide the reader with a holistic view of two highly sought out languages to write JavaScript ...Read More
What is TypeScript August 21, 2020 Look at the below code for (var i = 0; i < 10; i++) { /* … */} console.log(i); What will be the output? For some it will be “un...Read More