Found 10710 Articles for Web Development

How to use JavaScript Fetch API to Get Data?

Shubham Vora
Updated on 16-Feb-2023 16:57:43

18K+ Views

Nowadays, JavaScript is useful for writing frontend and backend code. Also, it is the most widely used programming language. Furthermore, we need to get the data from other servers while developing real-time applications. We can fetch data from other servers or databases using the API, which stands for the application programming interface. Here, we will learn various methods to fetch API to get data using JavaScript. Use the fetch() method The fetch() is a browser’s method to get the data from the API. It takes the API URL as the first parameter we need to get data ... Read More

How to unpack array elements into separate variables using JavaScript?

Shubham Vora
Updated on 16-Feb-2023 16:56:35

771 Views

Unpacking array elements means assigning array element values to the new variables. We can assign every element to the separate variables, or we can assign some elements to the separate variables, and for the remaining elements, we can create a new array. In this tutorial, we will learn to unpack array elements into separate variables using JavaScript. Syntax Users can follow the syntax below to unpack the array elements into separate variables. let array = [element1, element2, element3, element4]; let [a, b, c, d] = array; In the above syntax, a variable contains the value of element1, ... Read More

How to trim a file extension from a string using JavaScript?

Shubham Vora
Updated on 16-Feb-2023 16:55:03

5K+ Views

Many web applications allow users to upload a file. Also, it shows the file content with the filename after trimming the file extension. Furthermore, sometimes we require to store the file's content in the database with the filename without extension as a key. So, various use cases require us to use the file name of the uploaded file without extension. Here, we will learn multiple ways to trim the file extension from the string using JavaScript. Use the array.split(), array.pop() and array.join() method Every file name contains the file extension after the last dot in the file name. ... Read More

How to Toggle an Element Class in JavaScript?

Shubham Vora
Updated on 16-Feb-2023 16:53:10

5K+ Views

Toggling an element class means adding and removing a particular class from the HTML element based on a certain condition. For example, we want to highlight the HTML div element, and when the mouse enters, we need to add a particular class with a different style in the HTML element. Here, we will learn various approaches to toggle an element class using JavaScript and jQuery. In this tutorial, we will learn to toggle an element class in JavaScript. Using the toggle() method of the classList The toggle() method toggles the class in the element. It checks if ... Read More

How to swap the key and value of JSON element using JavaScript?

Shubham Vora
Updated on 16-Feb-2023 16:51:52

2K+ Views

Here, we will learn to swap the key and value of the JSON element using JavaScript. In JavaScript, an object stores the key-value pairs. So, we can swap the key and value as we swap two normal variables. In this tutorial, we will learn different approaches to swapping all the key values of JSON elements using JavaScript. Use the for loop We can iterate through the keys of the JSON object using for loop. After that, we can access the value from the object using the key. So, we can swap every key and value in the object. ... Read More

How to store all dates in an array present in between given two dates in JavaScript?

Shubham Vora
Updated on 16-Feb-2023 16:50:40

3K+ Views

Sometimes, we require to get all the dates between the given date range. In this tutorial, we will take two dates and find all dates between two dates. Also, we will store all dates in the array. Here, we will learn three approaches to storing all dates in an array present between given two dates in JavaScript. Use the while loop and setDate() method We can use the while loop for iteration and the setDate() method to set dates in the date object. On every iteration of the while loop, we can increase the date by one ... Read More

How to store a key => value array in JavaScript?

Shubham Vora
Updated on 16-Feb-2023 16:49:31

5K+ Views

Sometimes, we require to map keys to particular values using some data structure in JavaScript. For example, storing the user details in the key value pairs in JavaScript is useful. We can use different data structures, such as objects or maps in JavaScript, to store data in the key-value format. Use the objects to store a key => value in JavaScript In JavaScript, objects allow us to store data in the key-value format. We can use the key with the object to get the data from the object. Syntax Users can follow the syntax below to use ... Read More

How to stop browser's back button using JavaScript?

Shubham Vora
Updated on 16-Feb-2023 16:47:59

13K+ Views

Stopping the browser’s back button meaning is that preventing users from going to the previous page. Sometimes, we need to prevent users from going to the back of the current page for security purposes. For example, most bank sites don’t allow you to go back when you are doing some transaction from their site using online banking. Because if users go back from the midtransaction, it can create some issues. So, it only allows you to either complete the transaction or cancel the transaction and start it again. Here, we will learn various approaches to prevent users from going ... Read More

How to append data to

AmitDiwan
Updated on 16-Feb-2023 11:02:57

18K+ Views

We can append data to an element using JavaScript by using the .innerHTML property to add content to the element. This can be done by using the += operator to add the new content to the existing content within the . We can also use the .appendChild() method to add a new child element to the . is a block-level element that is used to create a division or section in an HTML document. The element is usually used to group elements together, such as paragraphs, headings, or images. The element can also be used to ... Read More

How to animate div width and height on mouse hover using jQuery?

AmitDiwan
Updated on 13-Feb-2023 18:04:31

1K+ Views

We can animate the width and height of a div on mouse hover using jQuery by applying the animate() method to the div on hover. We can specify the desired width and height values as well as the duration of the animation. Additionally, we can also add a callback function to perform additional actions after the animation is complete. jQuery is a JavaScript library that makes it easy to add interactive elements to web pages. jQuery is designed to make it easy to add dynamic content to a web page, and to make it easy to write code that works ... Read More

Advertisements