Learn Coding!
Learn continually – there’s always “one more thing” to learn! – Steve Jobs
Basics of Node.Js
by Sudipta Deb | August 3, 2021 | Node.js | 0 Comments
Node.js supports JavaScript. So, JavaScript syntax on Node.js is similar to the browser's JavaScript syntax. Primitive Types Below primitive types are supported in Node.js StringNumberBooleanUndefinedNullRegExp Note - Everything else is an object in Node.js Loose...
How to Install Node.js
by Sudipta Deb | July 29, 2021 | Node.js, Web Technology | 0 Comments
Before you start building anything in Node.js, the first thing that you need to do is install Node.js in my machine. The Node.js installer is available for all different types of operating system. So without any further delay, let's go ahead and install Node in our...
Introduction to Node.js
by Sudipta Deb | July 29, 2021 | Node.js, Web Technology | 0 Comments
If you’re into web development, you’re are definitely writing codes in JavaScript now. Node is a way to simplify web application development by unifying the server and client side languages. What is Node.js Node.js is an open-source, cross-platform, JavaScript runtime...
Understand Call, Bind, and Apply in JavaScript
by Sudipta Deb | April 8, 2021 | JavaScript | 1 Comment
Understanding Call, Bind and Apply while dealing with JavaScript Arrow functions is very important. As you might face some issues while working with Arrow functions. I have written a post earlier covering the things you should know while implementing functionalities...