diff --git "a/Retos/Reto #28 - EXPRESI\303\223N MATEM\303\201TICA [Media]/javascript/nlarrea.js" "b/Retos/Reto #28 - EXPRESI\303\223N MATEM\303\201TICA [Media]/javascript/nlarrea.js" index 4ee12a3b7b..38c31073e1 100644 --- "a/Retos/Reto #28 - EXPRESI\303\223N MATEM\303\201TICA [Media]/javascript/nlarrea.js" +++ "b/Retos/Reto #28 - EXPRESI\303\223N MATEM\303\201TICA [Media]/javascript/nlarrea.js" @@ -54,7 +54,6 @@ function checkExpression(expression) { for (let element of expressionArray) { // if two operators together (no space between them) -> NOK - console.log(element); if (element.length > 1 && !/^\d+$/.test(element)) { console.log('This expression has more than one operator without spacing.'); return false;