Found 10711 Articles for Web Development

How to create a collapsed border in HTML?

Lokesh Badavath
Updated on 18-Oct-2022 10:50:33

14K+ Views

We use border-collapse property to create a collapsed border in HTML. The border-collapse is a CSS property used to set the table borders should collapse into a single border or be separated with its own border in HTML. Border-collapse property has four values: separate, collapse, initial, inherit. With the value collapse If you pass collapse as a value of the border-collapse Property, the borders of the table are simply collapsed into a single border. Following is the syntax to create a collapsed border in HTML. border-collapse: collapse; Example 1 In the example given below we are trying to ... Read More

How to get a number of days in a specified month using JavaScript?

Nishtha Thakur
Updated on 17-Jun-2020 06:47:45

1K+ Views

To get numbers of days in a month, use the getDate() method and get the days.ExampleYou can try to run the following code to get a number of days in a month −Live Demo                 var days = function(month,year) {          return new Date(year, month, 0).getDate();       };       document.write("Days in July: "+days(7, 2012)); // July month       document.write("Days in September: "+days(9, 2012)); // September Month           OutputDays in July: 31 Days in September: 30

How to create table border in HTML?

Fendadis John
Updated on 10-Sep-2023 07:53:04

31K+ Views

To create table border in HTML, the border attribute was used. But the introduction of HTML5, deprecated the border tag. Create table border using the CSS property border. Set table border as well as border for and .ExampleYou can try to run the following code to create a border in the table in HTML. We’re using tag here:                    table, th, td {             border: 1px solid black;          }                     Employee Details                             Name             Amit             Sachin                                 Age             27             34                     Output

How can I round down a number in JavaScript?

Shubham Vora
Updated on 14-Jul-2022 12:06:17

996 Views

This tutorial teaches us to round down a number in JavaScript. The meaning of the round-down number is “returning the integer which is equal to or less than the current float number”.For example, if we round down the number 9.99, we get 9 as an output, and in the same way, for 8.01 we get 8 as an output. In simple terms, if you represent your current number in the number line, you must return the nearest integer that resides on the left side of the current number.In this tutorial, we will take a look at three different approaches to ... Read More

How to format a number with two decimals in JavaScript?

Kumar Ishan
Updated on 31-Oct-2023 13:02:35

91K+ Views

This tutorial will teach us how to format a number with two decimals using JavaScript. Formatting a number means rounding the number up to a specified decimal place. In JavaScript, we can apply many methods to perform the formatting. Some of them are listed as follows − The toFixed() Method Math.round() Method Math.floor() Method Math.ceil() Method The toFixed() Method The toFixed() method formats a number with a specific number of digits to the right of the decimal. it returns a string representation of the number that does not use exponential notation and has the exact number of digits after ... Read More

How to perform integer division and get the remainder in JavaScript?

Shubham Vora
Updated on 14-Sep-2022 13:38:18

2K+ Views

In this tutorial, we will learn how to perform integer division and get the remainder in JavaScript. The division operator (/) returns the quotient of its operands, where the dividend is on the left, and the divisor is on the right. When another splits one operand, the remainder operator (%) returns the residual. It always takes the dividend sign. In the operation x% y, x is known as the dividend, and y is known as the divisor. If one of the operands is NaN, x is Infinity, or y is 0, the operation returns NaN. Otherwise, the dividend x is ... Read More

How do I get the number of days between two dates in JavaScript?

Shubham Vora
Updated on 20-Jul-2022 08:47:50

7K+ Views

This tutorial teaches us to find the number of days between the two dates in JavaScript. If you are a developer, sometimes you face the scenario where you need to find the number of days between 2 dates.For example, if you are building a software application to keep track of employees' attendance and salary. If an employee leaves without completing the month, you need to count the number of days the employee attended in the current month to give the salary. Furthermore, there can be many scenarios like the above example.In this tutorial, we will see the different methods to ... Read More

What is the maximum size of a web browser's cookies value?

Daniol Thomas
Updated on 16-Jun-2020 12:04:38

4K+ Views

The following are the details of the maximum size of web browser’s cookies value −Web BrowserMaximum cookiesMaximum size per cookieGoogle Chrome1804096 bytesFirefox1504097 bytesOpera1804096 bytesAndroid504096 bytes

How to calculate the difference between two dates in JavaScript?

Jennifer Nicholas
Updated on 17-Jun-2020 06:27:09

1K+ Views

To get dates in JavaScript, use the getTime() method. Forgetting the difference between two dates, calculate the difference between date and time.ExampleYou can try to run the following code to learn how to calculate a difference between two dates −Live Demo                    var dateFirst = new Date("11/25/2017");          var dateSecond = new Date("11/28/2017");          // time difference          var timeDiff = Math.abs(dateSecond.getTime() - dateFirst.getTime());          // days difference          var diffDays = Math.ceil(timeDiff / (1000 * 3600 * 24));          // difference          alert(diffDays);          

What is the shortest function of reading a cookie by name in JavaScript?

Rishi Rathor
Updated on 16-Jun-2020 12:11:58

92 Views

Here’s the best way to read cookies by name in JavaScript. The following is the function −function ReadCookie() {    var allcookies = document.cookie;    document.write ("All Cookies : " + allcookies );    // Get all the cookies pairs in an array    cookiearray = allcookies.split(';');    // Now take key value pair out of this array    for(var i = 0; i < cookiearray.length; i++) {       name = cookiearray[i].split('=')[0];       value = cookiearray[i].split('=')[1];       document.write ("Key is : " + name + " and Value is : " + value);    } }

Advertisements