(Fixed) npm ERR! missing script: start error
In this article, we will learn how to fix npm err! missing script start error in node application. This error usually shows up when we run the command npm start…
Read moreJavascript – Convert array to String (with and without commas)
In this article, we will learn how to convert an array into a string with and without commas. In Javascript, we can convert an array into a string using the…
Read moreAdd Multiple Classes to HTML elements using JavaScript
In this article, we will learn how to add and remove multiple classes from a DOM element using Javascript. In Javascript, we can use the classList property to add a…
Read moreSquare a number in Python (3 ways)
In this article, we will learn different ways to find the square of a number using different python methods and libraries. A square of a number is a number multiplied…
Read moreFind square root of negative number using python
In this article, we will learn how to find the square root of a negative number using python. To find the square root of a negative number we have to…
Read moreAdd leading zero to a number in JavaScript (Code Example)
In this article, we will see how to add a leading zero to a number in Javascript. Let’s say we have a number 9 which we want to print out…
Read moreSave Python dict as JSON: Convert Dictionary to JSON
In this article, we will learn how to save a dictionary as JSON in python. While programming we need to work with lots of data. To store such data we…
Read moreFileNotFoundError: No such file or directory Error Python
While working with files or directories, we sometimes come across the “No such file or directory” Error in our python program. The “FileNotFoundError: No such file or directory” error occurs…
Read moreHow to use Pi in Python? (math and numpy module)
In this article, we will learn about Pi in Python and how to use it in a python program. Pi (π) is a mathematical constant that is defined as the…
Read more