test-console-assert.html 613 B

123456789101112131415161718192021222324
  1. <!DOCTYPE HTML>
  2. <html dir="ltr" xml:lang="en-US" lang="en-US">
  3. <head>
  4. <!--
  5. Any copyright is dedicated to the Public Domain.
  6. http://creativecommons.org/publicdomain/zero/1.0/
  7. -->
  8. <meta charset="utf-8">
  9. <title>console.assert() test</title>
  10. <script type="text/javascript">
  11. function test() {
  12. console.log("start");
  13. console.assert(false, "false assert");
  14. console.assert(0, "falsy assert");
  15. console.assert(true, "true assert");
  16. console.log("end");
  17. }
  18. </script>
  19. </head>
  20. <body>
  21. <p>test console.assert()</p>
  22. </body>
  23. </html>