Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>JavaScript NaN</title> </head> <body> <script> document.write("Some text" / 2); document.write("<br>"); document.write("Some text" / 2 + 10); document.write("<br>"); document.write(Math.sqrt(-1)); </script> </body> </html>