0 / 60 seg.

¿Qué valor se imprime al ejecutar el siguiente código?

let animal = 'gato';
if (animal === 'perro') {
  animal = 'woof';
} else {
  animal = 'meow';
}
console.log(animal);