Shubham Vora has Published 962 Articles

JavaScript program to check whether a given number is power of 2

Shubham Vora

Shubham Vora

Updated on 20-Apr-2023 16:53:35

2K+ Views

The given number is a power of 2 if the number is generated using multiplying 2’s only. In this tutorial, we will learn to check whether a given number is a power of 2. Here, we will look at 5 different approaches to check whether a given number is a ... Read More

How to conditionally add a member to an object using JavaScript?

Shubham Vora

Shubham Vora

Updated on 20-Apr-2023 16:32:29

3K+ Views

The object is the most important data type of JavaScript. Even everything is an object in JavaScript. For example, Array is an object, and Number, String, and Boolean can also be an object. Sometimes, developers require to insert properties into the object based on some condition. For example, we have ... Read More

How to create an id using mongoose in Javascript?

Shubham Vora

Shubham Vora

Updated on 19-Apr-2023 15:27:55

3K+ Views

In this tutorial, we will learn to create an id using mongoose in JavaScript. Users can use the Mongoose NPM package in NodeJS to use MongoDB with NodeJS or connect MongoDB with the application. While storing the data in the MongoDB database, we must add a unique id to every ... Read More

How to compute union of JavaScript arrays?

Shubham Vora

Shubham Vora

Updated on 19-Apr-2023 15:27:10

417 Views

We can get the union of two arrays by merging both arrays and removing duplicate elements, and the union gives unique elements from both arrays. In this tutorial, we will learn to compute the union of JavaScript arrays using various approaches. Use the set() Data Structure The first approach is ... Read More

Finding the time elapsed in JavaScript

Shubham Vora

Shubham Vora

Updated on 19-Apr-2023 15:26:21

17K+ Views

Sometimes, it requires finding the total time elapsed while performing some operations in JavaScript. For example, we require to find the total time elapsed from users who have updated their profiles. Also, there can be other similar use cases where we need to find the difference between the particular time ... Read More

Find the OR and AND of Array elements using JavaScript

Shubham Vora

Shubham Vora

Updated on 19-Apr-2023 15:25:18

55 Views

In JavaScript, we can use the ‘&&’ operator to perform the AND operation between two elements and the ‘||’ operator to perform OR operation between two elements. Here, we will learn to perform OR and AND operations between every element of the array. Use the for Loop We can use ... Read More

How to concatenate regex literals in JavaScript?

Shubham Vora

Shubham Vora

Updated on 19-Apr-2023 15:24:09

2K+ Views

The regex literals are regular expressions, a sequence of characters to match the strings. Sometimes, developers require to combine regular expressions. However, a regular expression is also one type of string, but we can’t concat them like a string using the ‘+’ operator. So, we first require to get flags ... Read More

Which table property specifies the width that should appear between table cells in CSS?

Shubham Vora

Shubham Vora

Updated on 19-Apr-2023 14:27:27

410 Views

In HTML, a table contains columns and rows. The table cells don’t contain the space between two cells by default. If we add some space between table cells, it can improve the UI of the table. In CSS, the ‘border-spacing’ property adds the space between the table space. Also, we ... Read More

Which property specifies the width of a border in CSS?

Shubham Vora

Shubham Vora

Updated on 19-Apr-2023 14:25:57

137 Views

In CSS, the ‘border’ property is used to apply the border to any HTML element, such as div. Also, we can set the different styles for the border, color, width, etc. In this tutorial, we will learn different approaches to set the width of the border of the element. ... Read More

Which property specifies the distance between nearest border edges of marker box and principal box?

Shubham Vora

Shubham Vora

Updated on 19-Apr-2023 14:23:19

175 Views

In CSS, the ‘marker-offset’ CSS property is used to specify the distance between the nearest border edges of marker box and principal box. In CSS, the marker is a pseudoelement that refers to the bullet points of the lists. Here, we will learn to set the distance between the nearest ... Read More

Advertisements