Week 7 Example 6 IIFE
001(function(){ 002 // const protected from the global scope! 003 const tutor = 'Toby'; 004 window.onload = ()=> 005 { 006 console.log(tutor); 007 } 008})(); 009
This site will be updated live during the sessions
001(function(){ 002 // const protected from the global scope! 003 const tutor = 'Toby'; 004 window.onload = ()=> 005 { 006 console.log(tutor); 007 } 008})(); 009