featured Image

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 more
featured Image

Sort 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 more
featured Image

Uninstall/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 more
featured Image

How 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 more
featured Image

SyntaxError: 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 more
featured Image

Remove 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 more
featured Image

Code 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 more
featured Image

How 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 more
featured Image

Copy 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