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
JavaScript–substring, substr and slice August 21, 2020 JavaScript contains 3 functions for manipulating strings namely substring, substrate, and slice. It's very important to know the dif...Read More