August 2021 's Post

  • Closures in JavaScript

  • Author : Shubham Verma
  • Date : August 27, 2021
  • idkblogs.com

Closures in JavaScript


js

In this tutorial, you'll have a good knowledge about the Closures and you won't have to go to any other tutorial to get about the Closures.

idkBlogs

  • Create child process in Nodejs

  • Author : Shubham Verma
  • Date : August 13, 2021
  • idkblogs.com

Create child process in Nodejs


node

In this article, we will learn how we can create a child process in nodejs. we will create two file ‘master.js’ and fork.js. Send a message from parent.js to fork.js and fork.js will display that message and also from fork.js to master.js, and master.js will display tha...

idkBlogs

  • Lexical Environment and Scope Chain in JavaScript

  • Author : Shubham Verma
  • Date : August 3, 2021
  • idkblogs.com

Lexical Environment and Scope Chain in JavaScript


js

In this tutorial, you'll have a good knowledge about the Lexical Environment and you won't have to go to any other tutorial to get about the Lexical Environment.

idkBlogs

  • Why is extending built-in javascript objects not a good idea?

  • Author : Shubham Verma
  • Date : August 1, 2021
  • idkblogs.com

Why is extending built-in javascript objects not a good idea?


js

Extending built-in Object/types or Array is a not a good idea in Javascript. Because other modules can be affected, this is especially true for the Object prototype in javascript, as everything in Javascript extends from objects.

idkBlogs