How to Remove Trailing Slash from URL in Nuxt + Netlify ?
This article is about how to remove a trailing slash from URL in Nuxtjs hosted in Netlify. If you have a site built with nuxt and hosted or deployed in…
Read moreSort an array of String with non-ASCII characters.
In this article we will learn how to sort an array of string with non-ASCII characters. The Javascript sort() methods working completely fine when we sort an array ASCII characters…
Read moreUninstall/Remove package using Yarn
In this article, we will learn about the best practices to remove packages using yarn. What is Yarn ? Yarn ( Yet Another Resource Negotiator ) is a package manager…
Read moreHow to fix “npm ERR cb() never called”
Here we will learn how to fix “npm ERR cb() never called” error in our nodejs application easily. This error is very common in any JavaScript frameworks and libraries like…
Read moreSyntaxError: Unexpected end of JSON input in JavaScript
This article is about how to fix SyntaxError: unexpected end of JSON input in JavaScript. The unexpected end of JSON input error usually occurs in JavaScript. it is one of…
Read moreRemove first and last element from an array in JavaScript
In this article we will learn how to remove the first and last element from an array in JavaScript. JavaScript have some in-built function which helps us to add or…
Read moreCode on how to get Yesterday date in JavaScript
In this article we will learn how to get yesterday’s date in JavaScript. To get the yesterday’s date we have to first get the current day date using new Date()…
Read moreHow to Remove Last Character from a string in JavaScript
In this article, we will learn how to remove last character from a string in JavaScript. Here we will be using two in-built JavaScript methods to remove the last character…
Read moreCopy text from an HTML element to clipboard-JavaScript
In this article we will learn, how to copy text from an HTML element to clipboard using JavaScript. Copying text from a website usually required us to select the whole…
Read more