Shubham Vora has Published 957 Articles

Wave inside Text using pure CSS

Shubham Vora

Shubham Vora

Updated on 24-Apr-2023 17:10:37

1K+ Views

Developers can use CSS to add animation to the HTML element. Here, we will use CSS to add a wavy effect inside the text. It will look like a real wave in text Here, we have three approaches to add a wavy effect to the text. We will take a ... Read More

What is tree shaking in JavaScript?

Shubham Vora

Shubham Vora

Updated on 24-Apr-2023 17:07:18

316 Views

What is Tree Shaking? If you are an experienced JavaScript developer, you may hear about tree shaking. It is a common technique to remove unused codes from the application and also, and it removes unused imports from the application. Here, the ‘Tree shaking’ term is introduced by shaking a tree, ... Read More

What is server-sent events in JavaScript?

Shubham Vora

Shubham Vora

Updated on 24-Apr-2023 17:06:31

1K+ Views

What is Server-sent Events in JavaScript? In JavaScript, server-sent events (SSE) enable the server to send data to the client. The client require to establish a connection with the server to get data from the server. The server-sent events are similar to the WebSocket as it also establishes a connection ... Read More

What are the events available for server sent events in JavaScript?

Shubham Vora

Shubham Vora

Updated on 24-Apr-2023 17:05:06

401 Views

The server-sent events allow developers to open a connection between the server and the client and send data from the server to the client. Basically, it is a one-way communication, which means we can send data from the server to the client but not from the client to the server. ... Read More

Text to Voice conversion using Web Speech API of Google Chrome

Shubham Vora

Shubham Vora

Updated on 24-Apr-2023 17:03:52

1K+ Views

Nowadays, the audiobook is more preferred by readers to reading books as they can grab knowledge while doing any work by listening to it. Also, some website adds the audio of the article in every article, so if users don’t want to read the article, they can listne to it. ... Read More

Javascript Program to Check if two numbers are bit rotations of each other or not

Shubham Vora

Shubham Vora

Updated on 24-Apr-2023 17:02:49

228 Views

Problem Statement − We have given two integer numbers and need to check whether the two numbers are bit rotations of each other. In JavaScript, every integer is a 32-bit binary number which is a representation of 0 and 1. Here, we need to check if we rotate the 32-bit ... Read More

How to install yup in react native in JavaScript?

Shubham Vora

Shubham Vora

Updated on 24-Apr-2023 16:57:18

5K+ Views

The Yup is an NPM package we can install in the react-native application. It is used to validate the form values stored in a single object. Also, we can add different kinds of validations to the different form fields using the Yup. Users can execute the below command in the ... Read More

How do you receive server-sent event notifications in JavaScript?

Shubham Vora

Shubham Vora

Updated on 24-Apr-2023 16:55:10

760 Views

The server-sent event is a unidirectional way to communicate between the server and the client. When we only require to send data from server to client, but not from client to server, we can use the server-sent events. We can use the server-sent events by establishing the connection between the ... Read More

Fixed Options in Searchbox in ReactJS

Shubham Vora

Shubham Vora

Updated on 24-Apr-2023 16:52:52

122 Views

Sometimes, developers require to add the fixed options in the search box while creating the search bar. For example, you are developing a web application containing different web pages related to cars, bikes, other vehicles, etc. Also, you require to add a search bar on every web page. So, you ... Read More

Firebase to get url

Shubham Vora

Shubham Vora

Updated on 24-Apr-2023 16:48:09

2K+ Views

Firebase is a backend-as-a-service (BAAS) that provides different services. It includes authentication, cloud storage, hoisting, etc., in the services. Basically, it makes it easy for developers to integrate the authentication, database, etc., in the mobile or web application. In this tutorial, we will explore the cloud storage of Firebase. We ... Read More

Advertisements