DCdeepak chandraindeepakchandra076.hashnode.dev·Nov 19, 2020 · 1 min readJavascript call() Method.The call() function is a predefined JavaScript function. The call() allows for a function belonging to object can use a method belonging to another object. var person = { fullName: function() { return this.firstName + " " + this.lastName; } ...00
DCdeepak chandraindeepakchandra076.hashnode.dev·Nov 17, 2020 · 2 min readJavaScript - How to Remove the first characters of a stringIn this tutorial, we are going to learn about how to remove the first n characters of a string in JavaScript. Consider, we have the following string: const car = "loremipsum"; Now, we want to remove the first 2 characters vol from the above string. R...00
DCdeepak chandraindeepakchandra076.hashnode.dev·Nov 16, 2020 · 4 min readTips for React Beginner Developer1. Learn about Server side rendering (SSR) Okay, so when I say Server Side rendering, I also mean quite a few things related to it. For instance, NodeJS and webpack. You obviously wouldn’t bother rendering your react app server-side as a beginner whe...00