Parenthesis for math statement
<html> <head> <title>A Simple Page</title> <script language="JavaScript"> alert(3 - 1 * 6); alert((3 - 1) * 6); </script> </head> <body> </body> </html>