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...
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.