const fn = () => { console.log('Arrow function') } // Same as the arrow function from above function fn() { console.log('Normal function') }