Open In App

HTML DOM lastElementChild Property

The DOM lastElementChild property is used to return the last child element of the specified element or null if there is no last element. It is similar to the lastChild property but the difference is that the lastChild property returns all last-child nodes i.e. it includes text and comment nodes as well but on the other hand, lastElementChild returns the last node as an element node only. It is a read-only property. 

Syntax:



element.lastElementChild

Return Value: It returns an object which represents the last child of an element. If there is no child element then it returns null. 

Example: In this article, we will use DOM lastElementChild property






<!DOCTYPE html>
<html>
 
<head>
    <title>
        DOM lastElementChild Property
    </title>
</head>
 
<body style="text-align: center;">
    <h1 style="color:green;">
        GeeksforGeeks
    </h1>
    <h2>
        DOM lastElementChild Property
    </h2>
    <div id="GFG">
        <span>GeeksforGeeks!</span>
        <span>A computer science portal for geeks.</span>
    </div>
    <br>
    <button onclick="Geeks()">
        Click me!
    </button>
    <p id="p"></p>
   
      <!-- script to find last child element -->
    <script>
        function Geeks() {
            let doc =
                document.getElementById("GFG").lastElementChild.innerHTML;
            document.getElementById("p").innerHTML = doc;
            document.getElementById("p").style.color = "white";
            document.getElementById("p").style.background = "green";
        }
    </script>
</body>
 
</html>

Output: 

Supported Browsers: The browser supported by DOM lastElementChild property are listed below:


Article Tags :