Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>JavaScript Infinity</title> </head> <body> <script> document.write(16 / 0); document.write("<br>"); document.write(-16 / 0); document.write("<br>"); document.write(16 / -0); </script> </body> </html>