Open In App
Related Articles

HTML | DOM Ol reversed Property

Improve Article
Improve
Save Article
Save
Like Article
Like

The DOM Ol reversed Property is used to set or return whether the list items are in Descending order(9, 8, 7, 6, …) or in Ascending order(1, 2, 3, 4…).

Syntax: 

  • It is used to return the reversed property.
olObject.reversed
  • It is used to set the reversed property.
olObject.reversed = true|false

Property Values: 

  • true: It defines the list items are in descending order.
  • false: It defines the list items are in ascending order. It is by default set to false.

Return Value: It returns a Boolean value which represent the order i.e descending or ascending the list items.

Example-1: HTML Program that illustrate how to set the Property.  

HTML




<!DOCTYPE html>
<html>
<head>
    <title>Dom ol reversed Property</title>
</head>
<body>
    <h1 style="color:green;">
        GeeksforGeeks</h1>
    <h2 style="color:green;">
        DOM ol reversed Property
    </h2>
     
<p>List of all computer Subjects are</p>
 
    <ol id="GFG" reversed>
        <li>Data Structures</li>
        <li>Operating System</li>
        <li>python programming</li>
        <li>DBMS</li>
        <li>Computer Network</li>
    </ol>
    <button onclick="myGeeks()">Submit</button>
 
    <!-- Script to set ol reversed Property -->
    <script>
        function myGeeks() {
            var x = document.getElementById("GFG").reversed = false;
        }
    </script>
</body>
</html>


Output: 
Before clicking on the button: 

After clicking on the button: 

Example-2: HTML program that illustrate how to return the property. 

HTML




<!DOCTYPE html>
<html>
<head>
    <title>Dom ol reversed Property</title>
</head>
<body>
    <h1 style="color:green;">
        GeeksforGeeks
    </h1>
    <h2 style="color:green;">
        DOM ol reversed Property
    </h2>
     
<p>List of all computer Subjects are</p>
 
    <ol id="GFG" reversed>
        <li>Data Structures</li>
        <li>Operating System</li>
        <li>python programming</li>
        <li>DBMS</li>
        <li>Computer Network</li>
    </ol>
    <button onclick="myGeeks()">Submit</button>
    <p id="sudo" style="font-size:25px;
        color:green;text-align:center;">
    </p>
 
 
    <!-- Script to return the ol reversed property -->
    <script>
        function myGeeks() {
            var x = document.getElementById("GFG").reversed;
            document.getElementById("sudo").innerHTML = x;
        }
    </script>
</body>
</html>


Output: 
Before clicking on the button: 

After clicking on the button: 

Supported Browsers: The browser supported by DOM ol reversed Property are listed below: 

  • Google Chrome
  • Firefox
  • Opera
  • Safari 6.0

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 29 Aug, 2022
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials