From f50547d22cc242c2cc66f5e53492df7fcd90b438 Mon Sep 17 00:00:00 2001 From: Adarsh Naidu <47289788+AdarshNaidu@users.noreply.github.com> Date: Sun, 21 Jul 2019 20:47:03 +0530 Subject: [PATCH 1/3] Updated article.md Simply added the line:- Moreover, frameworks like react native and ionic let's us develop mobile applications using JavaScript. --- 1-js/01-getting-started/1-intro/article.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/1-js/01-getting-started/1-intro/article.md b/1-js/01-getting-started/1-intro/article.md index 28a98a00..65eeb731 100644 --- a/1-js/01-getting-started/1-intro/article.md +++ b/1-js/01-getting-started/1-intro/article.md @@ -92,6 +92,8 @@ JavaScript is the only browser technology that combines these three things. That's what makes JavaScript unique. That's why it's the most widespread tool for creating browser interfaces. +Moreover, frameworks like react native and ionic let's us develop mobile applications using JavaScript. + While planning to learn a new technology, it's beneficial to check its perspectives. So let's move on to the modern trends affecting it, including new languages and browser abilities. From 8dce0635187c6c2bbfae77e65aeed7655cf0357a Mon Sep 17 00:00:00 2001 From: Adarsh Naidu <47289788+AdarshNaidu@users.noreply.github.com> Date: Sun, 21 Jul 2019 20:48:00 +0530 Subject: [PATCH 2/3] Updated article.md Moreover, frameworks like react native and ionic lets us develop mobile applications using JavaScript. --- 1-js/01-getting-started/1-intro/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/01-getting-started/1-intro/article.md b/1-js/01-getting-started/1-intro/article.md index 65eeb731..e9d5435a 100644 --- a/1-js/01-getting-started/1-intro/article.md +++ b/1-js/01-getting-started/1-intro/article.md @@ -92,7 +92,7 @@ JavaScript is the only browser technology that combines these three things. That's what makes JavaScript unique. That's why it's the most widespread tool for creating browser interfaces. -Moreover, frameworks like react native and ionic let's us develop mobile applications using JavaScript. +Moreover, frameworks like react native and ionic lets us develop mobile applications using JavaScript. While planning to learn a new technology, it's beneficial to check its perspectives. So let's move on to the modern trends affecting it, including new languages and browser abilities. From bacf5dfc618795d25235b9d33427b9b293a1018e Mon Sep 17 00:00:00 2001 From: Adarsh Naidu <47289788+AdarshNaidu@users.noreply.github.com> Date: Tue, 23 Jul 2019 17:43:31 +0530 Subject: [PATCH 3/3] Minor correction in the answer Changed from result = (a + b < 4) ? 'Below' : 'Over'; to let result = (a + b < 4) ? 'Below' : 'Over'; --- 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 638ce81f..ff32354f 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 -result = (a + b < 4) ? 'Below' : 'Over'; +let result = (a + b < 4) ? 'Below' : 'Over'; ```