Posts for Javascript

JavaScript, often abbreviated as JS, is a high-level, interpreted scripting language that conforms to the ECMAScript specification. JavaScript has curly-bracket syntax and dynamic typing
Deven
Deven wrote

What is void(0) in JavaScript

In this article, you are going to learn about how to use void(0) in JavaScript. In a normal sense, the word void refers to completely empty or blank. When it is used in programming languages, like JavaScript the word void(0) refers as it returns nothing. This operator is mostly used with the hyperlink. We use […]

January 15, 2022 in Code examples & Javascript
Deven
Deven wrote

How to add an object key dynamically in JavaScript

In this article, you will learn about how to add an Object key dynamically in JavaScipt. JavaScript is the most popular language at this moment and you can do a lot more things by using JavaScript. The main reason because of its popularity is that it can be used both in front-end and back-end. JavaScript […]

January 15, 2022 in Code examples & Javascript
Deven
Deven wrote

How to convert HTML text to PDF in JavaScript

In this article, you will learn about how to convert HTML text to PDF by using JavaScript.Converting an HTML file into PDF is a very useful thing to do and you may save a bulk amount of data into a pdf file easily. In JavaScript, you may convert your HTML file into PDF and to […]

January 13, 2022 in Code examples & Javascript
Deven
Deven wrote

Learn How to push an element to array in Mongoose

In this article, you are going to learn about how to push an element to an array in the Mongoose. An array is the most common data structure in all programming languages. You can store multiple data into the array. In databases like mongoose, arrays are widely used. You can store an array of strings, […]

December 14, 2021 in Code examples & Javascript