async/await


How to code?

Every programming problem involves some kind of algorithm. Algorithm is a process or set of steps to accomplish a certain tasks or a step by step way to solve a problem. There are about 700 programming languages. Here is a

Read more . . .

JavaScript Promises, Callbacks, and Async/Await

ES6 came with many new features, but one of the best features was the official introduction of Promises. Promises allow you to write clean non-callback-centric code without ever having to worry about callback hell. Even if you never write your own promise, knowing how they work is incredibly important, since many ...

Read more . . .

Error Handling in Javascript

JavaScript is a lightweight, interpreted, object-oriented language with first-class functions, and is best known as the scripting language for Web pages, but it's used in many non-browser environments as well. It is a prototype-based, multi-paradigm scripting language that is dynamic, and supports object-oriented, ...

Read more . . .

Facemotion Detection App with face-api

Facemotion detection can be seen in Machine Learning projects with python and Tensorflow. As a web application most of us haven't seen or even don't know that it exists. Yes we can create our own face motion detection web app with face-api that is written on top of tensorflow.js. We can detect the face emtion just ...

Read more . . .

Comment Remover with Javascript

Code commenting is the practice of sprinkling short, normally single-line notes throughout your code. These notes are called comments. They explain how your program works, and your intentions behind it.Comments don’t have any effect on your program, but they are invaluable for people reading your code.

Read more . . .

Github Repos Every Web Developer Should follow

Learning is a process.It takes time and good materials helps a lot in the learning process. Being a web developer there are many resources to follow up and learn. Till date learning web development has become a popular and trending path. Googling and Youtube surfing from good content creators has ease the process to ...

Read more . . .

A Roadmap for Web Developers

These days there are so many career choices to take in the programmer world. But one of the most successful and important ones is Web Development . There are so many companies out there that are on the constant look for web developers and designers. And the good thing is that these companies and businesses are ...

Read more . . .

Linked List with JavaScript

A linked list is a data structure composed of nodes. Each node has at least 2 components, the data that it holds and a reference to the next node in the list (called a pointer). The first node in a linked list is called the head, the last node in a linked list is called the tail. There are several ...

Read more . . .

A walkthrough to TypeScript

TypeScript is a programming language developed and maintained by Microsoft licensed using the Apache License 2.0. TypeScript is a superset of JavaScript, meaning that all the concepts of JavaScript are present in ...

Read more . . .