Week 7 Exercise 1 A
001(function(){ 002 var x = 10; 003 004 if(false) 005 { 006 var x = 5; 007 } 008 else 009 { 010 x = x + 10; 011 } 012 013 console.log(x); 014})();
This site will be updated live during the sessions
001(function(){ 002 var x = 10; 003 004 if(false) 005 { 006 var x = 5; 007 } 008 else 009 { 010 x = x + 10; 011 } 012 013 console.log(x); 014})();