FUNÇÃO COM PARAMETROS

Função somar(2, 7)

FUNCAO DE SETA(ARROW FUNCTION)

CLASSICA: Funcao saudacao(nome){ return `Olá, ${nome}`; }

MELHORADA: Funcao saudacao = (nome) => `Olá, ${nome}`;

FUNÇÃO DENTRO DE FUNÇÃO(CALLBACK)