// 1(Introduction and review of previous) // 2(function declaration) function startFan(){ console.log('Stand up'); console.log('walk towards the switch'); console.log('Press the switch'); } // calling the function startFan(); console.log('Waking up in the morning') startFan(); console.log('Eating lunch'); console.log('Watching JS tutorial') startFan();