1234567891011121314151617 |
- <!DOCTYPE HTML>
- <html dir="ltr" xml:lang="en-US" lang="en-US"><head>
- <meta charset="utf-8">
- <title>Console.clear() tests</title>
- <script type="text/javascript">
- console.log("log1");
- console.log("log2");
- console.clear();
- window.objFromPage = { a: 1 };
- </script>
- </head>
- <body>
- <h1 id="header">Clear Demo</h1>
- </body>
- </html>
|