2-10 Creation and hoisting hoisting : before js code is run line by line, js engine set memory space for the variables all variables is initialized to undefined in js 123456789101112b();console.log(a);var a = 'Bello';function b (){ console.log('called b');}/*called bundefined */ 123456789101112b();console.log(a);function b (){ console.log('called b');}/*called bError!!*/