Skip to content

Commit 1a7e5c2

Browse files
authored
Merge pull request #1172 from AdarshNaidu/master
Updated article.md
2 parents e537441 + bacf5df commit 1a7e5c2

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

1-js/01-getting-started/1-intro/article.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,8 @@ JavaScript is the only browser technology that combines these three things.
9292

9393
That's what makes JavaScript unique. That's why it's the most widespread tool for creating browser interfaces.
9494

95+
Moreover, frameworks like react native and ionic lets us develop mobile applications using JavaScript.
96+
9597
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.
9698

9799

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22

33
```js
4-
result = (a + b < 4) ? 'Below' : 'Over';
4+
let result = (a + b < 4) ? 'Below' : 'Over';
55
```
66

0 commit comments

Comments
 (0)