Cross compiling code between different js versions

Cross compiling code between different js versions

03 March, 2019undefined min readTech

The technologies we use keep evolving every day, with every update it makes our life easier. Although the updates have lots and lots of…

Tools for writing better code

Tools for writing better code

03 February, 2019undefined min readTech

In this post, I will list down few tools that I use personally which have improved my coding skills and development experience. These tools…

What is ECMAScript?

What is ECMAScript?

13 January, 2019undefined min readTech

According to Wikipedia , “ECMAScript (or ES) is a trademarked scripting-language specification standardized by Ecma International in ECMA…

Async operations in JavaScript

Async operations in JavaScript

06 January, 2019undefined min readTech

Synchronous tasks/programs are the ones in which each instruction is executed step by step, each blocking the processor until it completes…

Object orientated programming in JS

Object orientated programming in JS

30 December, 2018undefined min readTech

In Object orientated programming you group data and methods into a single entity called class and create different instances of the class…

Function context in JavaScript

Function context in JavaScript

23 December, 2018undefined min readTech

If you know any object orientated language you will be very familiar with the “this” keyword. In these languages “this” refers to the…

Better loops in JavaScript

Better loops in JavaScript

16 December, 2018undefined min readTech

In this post, we will take a look at forms of for loop, array methods using which you can make your code simpler, more readable. These loops…

Built in data structures in Javascript

Built in data structures in Javascript

09 December, 2018undefined min readTech

In this post, we will take a look at different data structures that are available to us out of the box in Javascript (out of the box since…

Conditional statements in Javascript

Conditional statements in Javascript

02 December, 2018undefined min readTech

In this post, let’s take a look at what are conditional statements, different types of conditional statements and their use cases…

Types in Javascript

Types in Javascript

25 November, 2018undefined min readTech

Data can be of different forms, numbers, strings, booleans etc. The type system of a programing language helps us to store various kind of…

What is Scope in Javascript?

What is Scope in Javascript?

18 November, 2018undefined min readTech

While programming we often deal with data, we need to store and manipulate data to derive useful results. In this article, we will learn…

What can NodeJS do?

What can NodeJS do?

11 November, 2018undefined min readTech

In this post, I will just pour my heart about node and what it has to offer. I have broken down the article into a series of questions and…