Rushi Javiya has Published 167 Articles

Higher Order Functions and Currying in JavaScript

Rushi Javiya

Rushi Javiya

Updated on 10-Mar-2023 16:28:56

286 Views

In any programming language, functions are a very useful feature. Developers might be able to find any programming language which doesn’t contain the function. Also, when we start learning any programming language, we definitely learn the function, a block of code that provides the code reusability. In this tutorial, ... Read More

Hide the cursor on a webpage using CSS and JavaScript

Rushi Javiya

Rushi Javiya

Updated on 10-Mar-2023 16:27:22

6K+ Views

In this tutorial, we will learn to hide the cursor in a webpage using CSS and JavaScript. Sometimes, we need to create our style cursor, and then we need to hide the cursor. Maybe it also needed to hide the cursor for a particular HTML element. There are two ... Read More

Handling Promise rejection with a catch while using await in JavaScript

Rushi Javiya

Rushi Javiya

Updated on 10-Mar-2023 16:25:24

2K+ Views

In JavaScript, users can perform particular actions using the Promise. For example, we can create the promise to fetch data from the database using the API. If the promise gets the data from the database successfully, that means the promise is a success, or the promise gets an error, which ... Read More

How to use jQuery touch events plugin for mobiles?

Rushi Javiya

Rushi Javiya

Updated on 07-Mar-2023 13:47:30

960 Views

JavaScript and jQuery contain various plugins, and every plugin contains a couple of functions. JavaScript plugin works as a library, and we can use its code directly in our code. The jQuery touch event plugin is also a library used to detect touch events in mobile devices and execute ... Read More

Identifiers and Keywords in Typescript

Rushi Javiya

Rushi Javiya

Updated on 07-Mar-2023 12:37:57

2K+ Views

In this tutorial, we'll learn about identifiers and keywords in TypeScript. Identifiers and keywords are two fundamental concepts in TypeScript, a statically-typed superset of JavaScript. Identifiers are names we give to variables, functions, classes, and other things in our code. Keywords are special words with specific meanings in TypeScript and ... Read More

How to use SolverJS?

Rushi Javiya

Rushi Javiya

Updated on 07-Mar-2023 12:35:30

170 Views

SolverJS is a comprehensive JavaScript package that provides a range of functions to help us solve common math problems. We know that web applications often require complex logic to function properly, and these logical solutions can easily become long and difficult to manage. This is where Solver JS comes in ... Read More

How to use Ejs in JavaScript?

Rushi Javiya

Rushi Javiya

Updated on 07-Mar-2023 12:33:21

7K+ Views

EJS is a templating language that allows us to generate HTML markup using plain JavaScript. It provides a simple and intuitive way to generate dynamic content in our web applications, making it easier to manage and organize our code. EJS is easy to use and can be integrated into any ... Read More

How to share code between Node.js and the browser?

Rushi Javiya

Rushi Javiya

Updated on 07-Mar-2023 12:06:04

1K+ Views

Sharing code between the backend and front end of a full-stack application can be a challenging task. However, it's essential for building maintainable and scalable applications. By sharing code, we can avoid code duplication, reduce development time, and maintain consistency across our applications. In this tutorial, we'll explore different ... Read More

How to use Paper Component in ReactJS?

Rushi Javiya

Rushi Javiya

Updated on 07-Mar-2023 11:57:52

1K+ Views

In Material UI, the Paper component is very similar to the card component, and basically, it also creates a card of the required dimensions. The main difference between the Card and Paper components is the ‘Elevation’ prop. The Elevation props allow setting the box shadow for the Paper component to ... Read More

How to use Link Component in ReactJS?

Rushi Javiya

Rushi Javiya

Updated on 07-Mar-2023 11:54:14

674 Views

The links are important for any application to navigate different web pages. We can use the tag to create links in the HTML. However, the Material UI library provides the Link component to create a stylish link. Users can execute the below command to install the Material UI ... Read More

Previous 1 ... 7 8 9 10 11 ... 17 Next
Advertisements