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...
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...
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...
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...
Introduction of Arrow Functions Arrow functions were introduced with ES6 as a new way of writing JavaScript functions. It was introduced to simplify function scope. I have written a detailed post covering the Arrow function. If you have not checked that post, I highly...