From 57ef1c2437aa80db2e1bd25f7cfdeae59ab63930 Mon Sep 17 00:00:00 2001 From: Pablo Enguix Llopis <56578000+PabloEnguix09@users.noreply.github.com> Date: Thu, 21 Nov 2024 16:13:29 +0100 Subject: [PATCH] Error entre los datos de inicio del objeto, los tests y el enunciado MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit En los tests y en el enunciado se espera un resultado diferente al que ofrece app.js como datos iniciales, llevando a confusión de no saber si el código está bien realizado o no --- exercises/19-And-One-and-a-Two-and-a-Three/app.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/exercises/19-And-One-and-a-Two-and-a-Three/app.js b/exercises/19-And-One-and-a-Two-and-a-Three/app.js index d0d994a8..8457e077 100644 --- a/exercises/19-And-One-and-a-Two-and-a-Three/app.js +++ b/exercises/19-And-One-and-a-Two-and-a-Three/app.js @@ -1,7 +1,7 @@ let contact = { - fullName: "Jane Doe", - phone: "321-321-4321", - email: "test@test.com" + fullName: "John Doe", + phone: "123-123-2134", + email: "test@nowhere.com" } for (let key in contact) {