JavaScript Newsletter: 20th December 2020

JavaScript Newsletter: 20th December 2020

·

2 min read

Here are the best JavaScript posts from this week.

This Weeks Articles

JavaScript: The Strange Yet Tricky Parts

By Gideon Idoko

JavaScript is one of the most widely used technologies in the engineering world as it is very efficient, and great for building fast, high-performing applications. Despite the awesomeness of JavaScript, the language has some tricky parts, one of which you might have come across. Understanding these strange parts will help you understand JavaScript better, offer up some insights, increase your debugging speed and much more. In this article, I’ll discuss some of the strange parts of JavaScript.

How Closures Work in Javascript?

By Yousaf Khan

Closures are a powerful concept and mastering them is essential to understanding the javascript language. Having said that, closures are one of the most confusing concept in javascript and it can take some time and experience to really understand how closures really work.

JavaScript Promises: Alternative to then/catch

By Michael Leners

The promise is a prominent way to deal with asynchronous code in JavaScript. Many APIs return asyncronousely and use the promise as a return value. The promise is to return data once it's ready.