From c47dbd2138748d6e8787a9c2c2132ba50ca0dc1d Mon Sep 17 00:00:00 2001 From: Mayko Costa <111927703+Maykopr@users.noreply.github.com> Date: Sun, 20 Nov 2022 10:45:11 -0300 Subject: [PATCH] =?UTF-8?q?Altera=C3=A7=C3=A3o=20para=20aspas=20duplas?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Como indicado alterei apenas as aspas duplas para reestabelecer a compatibilidade com o console. --- chapters/03-funcoes.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/chapters/03-funcoes.md b/chapters/03-funcoes.md index 9f13ad15..f91a9026 100644 --- a/chapters/03-funcoes.md +++ b/chapters/03-funcoes.md @@ -352,10 +352,10 @@ function findSolution(target) { else if (start > target) return null; else - return find(start + 5, “(“ + history + “ + 5)”) || - find(start * 3, “(“ + history + “ * 3)”); + return find(start + 5, "(" + history + " + 5)") || + find(start * 3, "(" + history + " * 3)"); } - return find(1, “1”); + return find(1, "1"); } console.log(findSolution(24));