JavaScript 2022

Term 3 Wednesday

May - July 2022

This site will be updated live during the sessions

Week 7 Exercise 1 B

		
001(function(){
		
002	vat = 5;
		
003	
		
004	if(5!=5)
		
005	{
		
006		var vatr = 3;
		
007	}
		
008	else
		
009	{
		
010		console.log(calculateVAT(vat));
		
011	}
		
012
		
013	function calculateVAT(vat)
		
014	{
		
015		return 100+vat;
		
016	}
		
017})();