Rushi Javiya has Published 170 Articles

Implode an array with jQuery/JavaScript

Rushi Javiya

Rushi Javiya

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

402 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

3K+ 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

652 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

3K+ 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

6K+ 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

359 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

140 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 Extract Digits from A Given Integer

Rushi Javiya

Rushi Javiya

Updated on 04-Jul-2023 15:59:03

7K+ Views

In Java programming, there are scenarios where we need to extract individual digits from an integer for further manipulation or analysis. This tutorial will guide you through the process of extracting digits from a given integer using Java. Syntax while (num > 0) { int digit = num % 10; ... Read More

Java Program to Implement Zhu-Takaoka String Matching Algorithm

Rushi Javiya

Rushi Javiya

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

104 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

130 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