HTML Compiler Online
Javascript Online Compiler
index.html
Change Theme
Compress code
Format code
Download Code
Clear Code
Copy Code!
RunĀ
ctrl+s or click
Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Javascript - document body</title> </head> <body> <h2>"document.body" returns body of the document.</h2> <p>Press <kbd>F12</kbd> to see object in console.</p> <script> const Body = document.body; console.log(Body); </script> </body> </html>
RunĀ
x
x