Declare an exec function that takes a function and call it
exec
const showMessage = () => { console.log('Functions inside a function ?!') } exec(showMessage) // log 'Functions inside a function ?!'