-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwhy-javascript.html
199 lines (182 loc) · 12.5 KB
/
why-javascript.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
<!--
MSIN 617 Web and Application Development
Spring 2022 Final Project
Developed By Nury Amanmadov
-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="Touro University GST MSIN 617 Final Project, Virtual Touro Tech Academy">
<meta name="keywords" content="html, css, touro university, msin 617, web and app development">
<meta name="author" content="Nury Amanmadov">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Touro Tech Academy - JavaScript</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="shortcut icon" href="images/favicon.ico">
</head>
<body>
<!-- Header section -->
<div class="about-header">
<nav>
<a href="https://gst.touro.edu/index.php"><img src="images/logo1.png" alt="logo"></a>
<div class="nav-links" id="navLinks">
<i class="fa fa-times" onclick="hideMenu()"></i>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="courses.html">Courses</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
<i class="fa fa-bars" onclick="showMenu()"></i>
</nav>
<h1>Top 10 Reasons to Learn JavaScript</h1>
</div>
<!-- End of Header section -->
<!-- AboutUs section -->
<section class="blog-content">
<div class="row">
<div class="blog-left" style="flex-basis: 100%;">
<h2>Why JavaScript</h2>
<p>
There are two reasons why it’s sometimes hard to make a choice; either there are too few options to choose from, or there are too many. When it comes to programming languages, there is an embarrassment of riches, which in turn can cause mental gridlock. There’s Python, Java, JavaScript, C/CPP, PHP, Swift, C#, Ruby, Objective-C, and SQL, and that’s not even the full list! How do you choose?
<br> <br>
Now, bear in mind that as far as programmers go, there’s no such thing as knowing too many languages. A programmer with a grasp of many languages is a programmer who is highly marketable and very much in demand. Upskilling is always a smart way to go.
<br> <br>
Still, you have to start somewhere; and that should be with one of the more popular languages, one that’s experiencing unprecedented growth in demand.
<br> <br>
We present to you, JavaScript!
</p>
<br>
<h2>What Exactly is JavaScript?</h2>
<p>
Not to be confused with Java, JavaScript—created by Netscape Communications—first appeared in 1995. Its developers define it as a “scripting or programming language that allows you to implement complex things on web pages.” JavaScript makes web pages more dynamic and user-friendly so that they respond to visitors’ actions. Or, to put it another way, JavaScript makes web pages interactive.
<br> <br>
JavaScript was once called LiveScript; but due to Java’s popularity, it was rebranded to take advantage of that fame. You could say that the newer language hitched its wagon to the rising star and went along for the ride, attracting its vast following in the process.
<br><br>
So with this in mind, let’s explore 10 compelling reasons to learn JavaScript.
<br>
</p>
<br>
<ol style="padding-left: 20px">
<li>
<p>
It’s the most popular programming language <br>
We start our list with possibly the most significant reason! According to Stackoverflow.com, JavaScript is the most popular programming language used by professional developers today. Even back-end developers choose JavaScript more often than not.
</p>
</li>
<li>
<p>
It’s in your browser
JavaScript is, without question, the default language of the internet. You need to look no further than your browser for proof since JavaScript was most likely used to develop it. Since browsers are a necessary part of any user’s online experience, it’s easy to see why JavaScript is so significant.
</p>
</li>
<li>
<p>
JavaScript also exists outside of the internet
JavaScript has many uses that go beyond its traditional internet roles. It powers smart televisions, works with the internet of things (IoT), creates native apps for iOS and Android, and builds cross-platform desktop apps, to name a few.
</p>
</li>
<li>
<p>
JavaScript is Ideal for Newbies
Since it’s already installed on every web browser today, JavaScript spares the rookies from the chore of setting up a development environment. Newcomers can just jump in and start coding. It’s one of the most accessible entries into coding available, a value-add for beginners. There is also a large online community that offers support and advice.
<br>
Also, JavaScript is an excellent tool for beginning programmers who want to expand their skill set into other languages. JavaScript supports valuable skills such as object-oriented, functional, and imperative styles of programming. Beginner developers, in turn, can apply these skills to any new language they want to learn, like Python, Java, or C++.
</p>
</li>
<li>
<p>
JavaScript is Easy to Learn
Not only is it a natural language to use, but JavaScript is also easy to pick up. JavaScript turns intricate details into abstracts, making things easier for the newcomer. Unlike the higher-level languages, JavaScript has more of a natural language feel to it.
</p>
</li>
<li>
<p>
You Can Create Visual Effects and Other Eye-catching Aesthetic Features
There’s building a web page, and then there’s building a visually appealing web page that attracts the user’s attention and encourages interaction. JavaScript is so versatile that you can use it to easily add cool design elements such as animation, interactive maps, and scrolling video. Organizations and clients want web designers who can not only put together a technically sound page but one that also will lure visitors. If you know JavaScript, you can deliver.
</p>
</li>
<li>
<p>
JavaScript is Versatile
Far from being a one-trick pony, JavaScript empowers a programmer to handle any aspect of app design. Do you want to do user-side (front-end) coding? You can do it in conjunction with Angular. Are you more interested in the server-side (back-end)? Bring Node.js into the mix and you can do that, too!
<br>
You can also create desktop, mobile, and web apps with Electron, React Native, and React. If you’re intrigued by machine learning, then JavaScript will help you there as well.
</p>
</li>
<li>
<p>
JavaScript also Affects Big Data and the Cloud
JavaScript Object Notation (JSON) is the go-to standard for data exchanges on today’s internet. NoSQL databases use JSON documents for record storage; and although JSON plays well with any programming language, it does best with JavaScript.
<br>
Also, more developers are turning to Node.js to build cloud-based apps, a very much in-demand market.
</p>
</li>
<li>
<p>
It’s a Valuable Tool for Game Designers
Games are a big business today, and developers who know JavaScript have that extra advantage. The language’s versatility, power, and ability to easily create visual effects make it a perfect fit for game developers.
</p>
</li>
<li>
<p>
Finally, the Career Potential is Skyrocketing
With an increasing number of businesses and organizations going digital, there is a corresponding increase in demand for developers who are familiar with the better-known programming languages. As we’ve already noted, that’s JavaScript!
</p>
</li>
</ol>
<br>
<img src="images/slider-images/js-image.png" alt="blog image">
<br> <br>
<p>
As it happens, there’s also a shortage of good JavaScript developers, so you have increased demand in conjunction with a deficit of qualified people. According to a report released by Devskiller.com, 70 percent of companies surveyed want to hire a JavaScript developer. Also, there’s a growing demand for data scientists who have expertise in Python. The market for data scientists and data analytics is projected to grow by 15 percent between 2015 and 2020. In actual numbers, that means 364,000 new job openings. Considering how every Python web app uses JavaScript in their front end, it becomes clear that the language is a necessity.
<br><br>
Businesses and other organizations that are looking for JavaScript professionals are willing to pay well, too! Indeed.com shows that a JavaScript developer can potentially earn an annual average of $113,643 in the United States.
<br><br>
If you’re looking to become a programmer who can always be assured of a stable career and get well compensated for it, then you want to learn JavaScript.
</p>
<br>
</div>
</div>
</section>
<!-- End of AboutUs section -->
<hr>
<!-- Footer section -->
<section class="footer">
<h4>About Us</h4>
<p>
320 West 31st Street (at 8th Avenue) New York, NY 10001 USA
<br>
Touro University Graduate School of Technology
<br>Copyright © 2022. All rights reserved.
</p>
<div class="icons">
<i class="fa fa-facebook" onclick="window.open('https://www.facebook.com/tourogst')" style="cursor:pointer;"></i>
<i class="fa fa-twitter" onclick="window.open('https://twitter.com/tourogst')" style="cursor:pointer;"></i>
<i class="fa fa-linkedin" onclick="window.open('https://www.linkedin.com/school/tourogst')" style="cursor:pointer;"></i>
<i class="fa fa-instagram" onclick="window.open('https://www.instagram.com/tourogst')" style="cursor:pointer;"></i>
</div>
</section>
<!-- End of Footer section -->
<!-- javascript for toggle menu -->
<script>
const navLinks = document.getElementById("navLinks");
function showMenu(){
navLinks.style.right = "0";
//navLinks.style.display = '';
}
function hideMenu(){
navLinks.style.right = "-200px";
//navLinks.style.display = 'none';
}
</script>
</body>
</html>