Source Code:
(back to article)
<!DOCTYPE html> <html> <head> <title>Title of the Document</title> </head> <body> Welcome <!-- Comment --> <script> let text = document.body.firstChild; alert(text.data); // Welcome let comment = text.nextSibling; alert(comment.data); // Comment </script> </body> </html>
Result:
Report an issue