blog
7 ways to create objects in JavaScript
In JavaScript, objects are king. If you understand objects, you understand JavaScript. There are many ways to create objects in JavaScript as below 1. Object constructor: The simplest way to create an empty object is Read more…
Javascript
JavaScript code to reverse a string
Today, I found a challenge that required me to reverse a particular string, so below is the code written in JavaScript to achieve the result. Method 1: Method 2: Additional Information: The string can be Read more…
blog
How to Detect changes on the URL using JavaScript
It’s while developing the chrome extensions, I faced an issue while performing certain event on the page URL was getting updated but my script didn’t get executed (script executed once only on window onload event), Read more…
blog
How to enable Chromecast on Microsoft Edge
The new Microsoft Edge is built on chromium, in this article we will enable the google Chromecast casting right from the browser to share the desktop or your favourite youtube video on TV using Chromecast. Read more…
React.js
How to Fix Minified React error #152
While Developing the React.js App you might have encounter this error after building your project Error: “Minified React error #152; visit https://reactjs.org/docs/error-decoder.html?invariant=152&args[]=u for the full message or use the non-minified dev environment for full errors Read more…
Node.js
How to Run Multiple Node.js versions on Windows using NVM
Node.js is a runtime environment to run JavaScript code outside the browser. Which is built on Chrome’s V8 JavaScript engine, We often use Node to build back-end services like API and frontend using React, Angular, Read more…