0
¿Como realiza la evaluación el ultimo ejercicio del curso javascript? Ya que me funciona en compu pero no lo logro aprobar
Curso javascript, ejecicio palabras
2 Antworten
0
SoloLearn recently changed the problem. If your solution uses the old code then it will fail - even if it passed the tests before.
Here is the fix. See if your code has a ",", in the z list after "amet", like this:
var z = new Add("lorem", "ipsum", "dolor", "sit", "amet", ",", "consectetur", "adipiscing", "elit");
Then delete the ",", like this:
var z = new Add("lorem", "ipsum", "dolor", "sit", "amet", "consectetur", "adipiscing", "elit");
0
thanks for your help 😂😀