From 9eb9587d01c8369646f61dcd56d5cc26cff329cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beste=20Karag=C3=B6z?= <30674420+bestekrgz@users.noreply.github.com> Date: Thu, 26 Mar 2020 01:43:40 +0300 Subject: [PATCH] Update solution.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit kod hatasını düzelttim. sonuc --> let sonuc --- 1-js/02-first-steps/10-ifelse/5-rewrite-if-question/solution.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/10-ifelse/5-rewrite-if-question/solution.md b/1-js/02-first-steps/10-ifelse/5-rewrite-if-question/solution.md index 5c98cbc20..4f6668cbe 100644 --- a/1-js/02-first-steps/10-ifelse/5-rewrite-if-question/solution.md +++ b/1-js/02-first-steps/10-ifelse/5-rewrite-if-question/solution.md @@ -1,6 +1,6 @@ ```js -sonuc = (a + b < 4) ? 'Düşük' : 'Yüksek'; +let sonuc = (a + b < 4) ? 'Düşük' : 'Yüksek'; ```