Merge pull request #1172 from AdarshNaidu/master

Updated article.md
This commit is contained in:
Ilya Kantor 2019-07-23 22:54:04 +03:00 committed by GitHub
commit 1a7e5c295d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View file

@ -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. 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 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. 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.

View file

@ -1,6 +1,6 @@
```js ```js
result = (a + b < 4) ? 'Below' : 'Over'; let result = (a + b < 4) ? 'Below' : 'Over';
``` ```