¿Cuál es la salida de este código?
const greeting = function(name) { console.log(`Hello, ${name}!`); } greeting('John');
Hello, John!
undefined
SyntaxError
TypeError