From 393e6569b2ddb4d0ebdc9fedd33588563a57ca3b Mon Sep 17 00:00:00 2001 From: nlarrea Date: Wed, 12 Jul 2023 18:16:44 +0200 Subject: [PATCH] Reto #28 - javascript --- .../javascript/nlarrea.js" | 1 - 1 file changed, 1 deletion(-) 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;