Paracetamol.js💊| #17: ¿Qué imprime este código JavaScript?

duxtech

Cristian Fernando

Posted on January 18, 2022

Paracetamol.js💊| #17: ¿Qué imprime este código JavaScript?

¿Qué imprime este código JavaScript?

const obj = { a: "one", b: "two", a: "three" };
console.log(obj);
Enter fullscreen mode Exit fullscreen mode
  • A: { a: "one", b: "two" }
  • B: { b: "two", a: "three" }
  • C: { a: "three", b: "two" }
  • D: SyntaxError

Respuesta en el primer comentario.


💖 💪 🙅 🚩
duxtech
Cristian Fernando

Posted on January 18, 2022

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related