JavaScript is the programming language of the web, unlike HTML which is use to instruct the browser how the website is going to look like. It is a lightweight,
cross-platform, and interpreted scripting language. It is well-known for the development of web pages, many non-browser environments also use it. JavaScript can be used for Client-side developments as well as Server-side developments. JavaScript contains a standard library of objects, like Array, Date, and Math, and a core set of language elements like operators, control structures, and statements.
Pop ups,embedding of images and videos and so on are all possible with javascript.
Javascript can work in both server and client side.
In the server side it supplies object relevant to running javascript on a server.Like if the server-side extensions allow an application to communicate with a
database, and provide continuity of information from one invocation to another of the application, or perform file manipulations on a server. The useful framework
which is the most famous these days is node.js.
JavaScript can be added to your HTML file in two ways:
Internal JS: We can add JavaScript directly to our HTML file by writing the code inside the <script> tag. The <script> tag can either be placed inside the <head> or
the <body> tag according to the requirement.
External JS: We can write JavaScript code in other file having an extension .js and then link this file inside the <head> tag of the HTML file in which we want to
add this code.
Client-side: It supplies objects to control a browser and its Document Object Model (DOM). Like if client-side extensions allow an application to place elements on
an HTML form and respond to user events such as mouse clicks, form input, and page navigation. Useful libraries for the client-side are AngularJS, ReactJS, VueJS
and so many others.
Server-side: It supplies objects relevant to running JavaScript on a server.
syntax
<script>
// JavaScript Code
</script>
Example:
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<title>
Basic Example to Describe JavaScript
</title>
</head>
<body>
<!-- JavaScript code can be embedded inside
head section or body section -->
<script>
console.log("Buildnode");
</script>
</body>
</html>
Output: The output will display on the console.
History of JavaScript:
The programming language of the web was created in 1995 by Brendan Eich while he was an engineer at Netscape. It was originally going to be named LiveScript but
was renamed. Unlike most
programming languages, the JavaScript language has no concept of input or output. It is designed to run as a scripting language in a host environment,
and it is up to the host environment to provide mechanisms for communicating with the outside world. The most common host environment is the browser.
Features of JavaScript: According to a recent survey conducted by Stack Overflow, JavaScript is the most popular language on earth.
With advances in browser technology and JavaScript having moved into the server with Node.js and other frameworks, JavaScript is capable of so much more.
Here are a few things that we can do with JavaScript:
JavaScript was created in the first place for DOM manipulation. Earlier websites were mostly static, after JS was created dynamic Web sites were made.
Functions in JS are objects. They may have properties and methods just like another object. They can be passed as arguments in other functions.
Can handle date and time.
Performs Form Validation although the forms are created using HTML.
No compiler needed.
Applications of JavaScript:
Web Adding interactivity and behavior to static sites JavaScript was invented to do this in 1995. By using AngularJS that can be achieved so easily.
Web Applications:
With technology, browsers have improved to the extent that a language was required to create robust web applications. When we explore a map in
Google Maps then we only need to click and drag the mouse. All detailed view is just a click away, and this is possible only because of JavaScript. It uses
Application Programming Interfaces(APIs) that provide extra power to the code. The Electron and React is helpful in this department.
Server Applications:
With the help of Node.js, JavaScript made its way from client to server and node.js is the most powerful in the server-side.
Games:
Not only in websites, but JavaScript also helps in creating games for leisure. The combination of JavaScript and HTML 5 makes JavaScript popular in
game development as well. It provides the EaseJS library which provides solutions for working with rich graphics.
Smartwatches:
JavaScript is being used in all possible devices and applications. It provides a library PebbleJS which is used in smartwatch applications.
This framework works for applications that require the internet for its functioning.
Art:
Artists and designers can create whatever they want using JavaScript to draw on HTML 5 canvas, make the sound more effective also can be used p5.js library.
Machine Learning: This JavaScript ml5.js library can be used in web development by using machine learning.
Limitations of JavaScript:
Performance: JavaScript does not provide the same level of performance as offered by many traditional languages as a complex program written in JavaScript
would be comparatively slow. But as JavaScript is used to perform simple tasks in a browser, so performance is not considered a big restriction in its use.
Complexity: To master a scripting language, programmers must have a thorough knowledge of all the programming concepts, core language objects, client and
server-side objects otherwise it would be difficult for them to write advanced scripts using JavaScript.
Weak error handling and type checking facilities: It is weakly typed language as there is no need to specify the data type of the variable. So wrong type checking
is not performed by compile.
JavaScript is best known for web page development but it is also used in a variety of non-browser environments. You can learn JavaScript from the ground up by
following this JavaScript Tutorial and JavaScript Examples.
Tags:
Programming