1 follower
Frontend developer who writes about HTML, CSS, JQuery, JavaScript, React, Strapi, GraphQL and Next.js. Blog: www.computerstrick.com
Subscribe to my newsletter and never miss my upcoming articles
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; } ...
In 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...
1. 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...