Rushi Javiya has Published 170 Articles

What are the restrictions of web workers on DOM in JavaScript?

Rushi Javiya

Rushi Javiya

Updated on 14-Jul-2023 10:12:49

380 Views

JavaScript is a single-threaded programming language. It means it executes all code of the application in a step-by-step manner. In some situations, we need to execute computationally extensive tasks. For example, applications with large databases need to process large amounts of data, which may take more time than usual. To ... Read More

Implode an array with jQuery/JavaScript

Rushi Javiya

Rushi Javiya

Updated on 14-Jul-2023 10:06:40

536 Views

In this tutorial, we will learn to implode a given array using JavaScript and JQuery. In web development, many situations occur where we must implode the array. For example, we have given a list of tags and need to implode them into a single string to insert into the web ... Read More

How to create Calendar in ReactJS?

Rushi Javiya

Rushi Javiya

Updated on 14-Jul-2023 10:05:15

4K+ Views

In some web applications, we require the user to take a date input. For example, we need to take the user's birth date or any other particular date as input. In such cases, it is a good idea to show the calendar to users and ask them to select the ... Read More

How to create bar chart in react using material UI and Devexpress?

Rushi Javiya

Rushi Javiya

Updated on 14-Jul-2023 10:00:16

794 Views

The material UI is a popular CSS library that we can use to style the React application. It contains various pre-styled React components that we can use directly in the application by importing them into the code. The 'dx-react-chart-material-ui’ is an NPM package of Devexpress that can connect the material-ui ... Read More

How to create and download CSV file in JavaScript?

Rushi Javiya

Rushi Javiya

Updated on 14-Jul-2023 09:59:03

4K+ Views

JavaScript has great capability to manipulate various data and handle them with files of different formats. Sometimes, developers require to handle the data with the CSV file while developing web applications using JavaScript. For example, we are building an e-commerce platform where users can buy and sell products. Also, we ... Read More

How to create an image element dynamically using JavaScript?

Rushi Javiya

Rushi Javiya

Updated on 14-Jul-2023 09:58:06

8K+ Views

In HTML, the image element is used to show the images on the web page. It takes multiple attributes according to the requirements, such as ‘src’, ‘alttext’, ‘height’, ‘width’, etc. In some situations, we require to dynamically add images to the web page. For example, we have stored an unknown ... Read More

Explain about rest parameters and arguments in TypeScript

Rushi Javiya

Rushi Javiya

Updated on 14-Jul-2023 09:56:09

461 Views

TypeScript is a feature-rich programming language, and it is necessary to know all features of TypeScript while developing web applications with TypeScript. One such feature is the rest of the parameters and arguments in TypeScript. This tutorial will teach us to use the rest parameters and arguments in TypeScript with ... Read More

Java Program to Find a Good Feedback Edge Set in a Graph

Rushi Javiya

Rushi Javiya

Updated on 04-Jul-2023 16:00:27

157 Views

A feedback edge set in a graph refers to a set of edges that, when removed from the graph, eliminates all cycles or feedback loops. In other words, it is a subset of edges that, when deleted, transforms the original graph into a directed acyclic graph (DAG). A good feedback ... Read More

Java Program to Implement Zhu-Takaoka String Matching Algorithm

Rushi Javiya

Rushi Javiya

Updated on 04-Jul-2023 15:53:46

117 Views

The Zhu-Takaoka algorithm is one of the best algorithms for pattern matching. It is developed using the combination of the Boyer-Moore and KMP string-matching algorithms. The Zhu-Takaoka algorithm utilizes the good character shift and bad character shift techniques to solve the problem. Problem statement − We have given ... Read More

Java Program to Implement wheel Sieve to Generate Prime Numbers Between Given Range

Rushi Javiya

Rushi Javiya

Updated on 04-Jul-2023 15:51:49

153 Views

The naïve approach to finding the prime numbers in the given range is to check whether each number is prime. Also, we need to make iterations equal to the given number to check whether the number is prime. So, the naïve approach is very time-consuming, and we need to optimize ... Read More

Previous 1 ... 3 4 5 6 7 ... 17 Next
Advertisements