Mega Code Archive

 
Categories / JavaScript Tutorial / Operators
 

Operator order in action

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