JavaScript 2022

Term 3 Wednesday

May - July 2022

This site will be updated live during the sessions

Week 7 Hoisting 1

		
001if(x)// if x exists
		
002{
		
003	console.log(x);
		
004}
		
005
		
006let x = 5;