JavaScript 2022

Term 3 Wednesday

May - July 2022

This site will be updated live during the sessions

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})();