Run
<html> <body> <script> var x = 5; // Here x is 5 { var x = 10; // Here x is 10 } // Here x is 10 document.write(x) </script> </body> </html>