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'; ```