1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Simple webconsole test page</title> </head> <body> <p>Simple webconsole test page</p> <script> function doLogs(num) { num = num || 1; for (var i = 0; i < num; i++) { console.log(i); } } </script> </body> </html>