What Is Javascript
What Is Javascript
Features of JavaScript
History of JavaScript
Application of JavaScript
o Client-side validation,
o Dynamic drop-down menus,
o Displaying date and time,
o Displaying pop-up windows and dialog boxes (like an alert dialog
box, confirm dialog box and prompt dialog box),
o Displaying clocks etc.
JavaScript Example
<html>
<body>
<h2>Welcome to JavaScript</h2>
<script>
document.write("Hello JavaScript");
</script>
</body>
</html>
JavaScript Example
<html>
<body>
<script type="text/javascript">
document.write("JavaScript is a simple <html>
<body>
<script type="text/javascript">
document.write("JavaScript is a simple language ");
</script>
</body>
</html>
</script>
</body>
</html>
<html>
<body>
<script type="text/javascript">
alert("Hello Javascript");
</script>
</body>
</html>
To call function, you need to work on event. Here we are using onclick
event to call msg() function.
<html>
<head>
<script type="text/javascript">
function msg(){
alert("Hello Javatpoint");
}
</script>
</head>
<body>
<p>Welcome to JavaScript</p>
<form>
<input type="button" value="click" onclick="msg()"/>
</form>
</body>
</html>
External JavaScript file
We can create external JavaScript file and embed it in many html page.
It provides code re usability because single JavaScript file can be used
in several html pages.
message.js
function msg(){
alert("Hello JavaScript ");
}
index.html
<html>
<head>
<script type="text/javascript" src="message.js"></script>
</head>
<body>
<p>Welcome to JavaScript</p>
<form>
<input type="button" value="click" onclick="msg()"/>
</form>
</body>
</html>
1. The stealer may download the coder's code using the url of the js
file.
2. If two js files are dependent on one another, then a failure in one
file may affect the execution of the other dependent file.
3. The web browser needs to make an additional http request to get
the js code.
4. A tiny to a large change in the js code may cause unexpected
results in all its dependent files.
5. We need to check each file that depends on the commonly created
external javascript file.
6. If it is a few lines of code, then better to implement the internal
javascript code.
JavaScript Comment
1. Single-line Comment
2. Multi-line Comment
Let’s see the example of single-line comment i.e. added before the
statement.
<html>
<body>
<script>
// It is single line comment
document.write("hello javascript");
</script>
</body>
</html>
Let’s see the example of single-line comment i.e. added after the
statement.
<html>
<body>
<script>
var a=10;
var b=20;
var c=a+b;//It adds values of a and b variable
document.write(c);//prints sum of 10 and 20
</script>
</body>
</html>
<html>
<body>
<script>
</script>
</body>
</html>
JavaScript Variable
There are some rules while declaring a JavaScript variable (also known
as identifiers).
1. var 123=30;
2. var *aa=320;
<html>
<body>
<script>
var x = 10;
var y = 20;
var z=x+y;
document.write(z);
</script>
</body>
</html>
<script>
function abc(){
var x=10;//local variable
}
</script>
Or,
<script>
If(10<13){
var y=20;//JavaScript local variable
}
</script>
<html>
<body>
<script>
function a(){
document.writeln(data);
}
function b(){
document.writeln(data);
b();
</script>
</body>
</html>
1. var a=40;//holding number
2. var b="Rahul";//holding string
There are five types of primitive data types in JavaScript. They are as
follows:
Data Type Description
1. By array literal
2. By creating instance of Array directly (using new keyword)
3. By using an Array constructor (using new keyword)
1) JavaScript array literal
1. var arrayname=[value1,value2.....valueN];
Let's see the simple example of creating and using array in JavaScript.
<html>
<body>
<script>
var emp=["Sonoo","Vimal","Ratan"];
for (i=0;i<emp.length;i++){
document.write(emp[i] + "<br/>");
</script>
</body>
</html>
Sonoo
Vimal
Ratan
2) JavaScript Array directly (new keyword)
1. var arrayname=new Array();
<html>
<body>
<script>
var i;
emp[0] = "Arun";
emp[1] = "Varun";
emp[2] = "John";
for (i=0;i<emp.length;i++){
document.write(emp[i] + "<br>");
</script>
</body>
</html>
<html>
<body>
<script>
for (i=0;i<emp.length;i++){
document.write(emp[i] + "<br>");
</script>
</body>
</html>
Output of the above example
Jai
Vijay
Smith
Let's see the list of JavaScript array methods with their description.
Methods Description
copywithin() It copies the part of the given array with its own elements
and returns the modified array.
filter() It returns the new array containing the elements that pass
the provided function conditions.
find() It returns the value of the first element in the given array
that satisfies the specified condition.
findIndex() It returns the index value of the first element in the given
array that satisfies the specified condition.
map() It calls the specified function for every array element and
returns the new array
The JavaScript array concat() method combines two or more arrays and
returns a new string. This method doesn't make any change in the
original array.
Syntax
1. array.concat(arr1,arr2,....,arrn)
Parameter
Return
Example 1
<!DOCTYPE html>
<html>
<body>
<script>
var arr1=["C","C++","Python"];
var arr2=["Java","JavaScript","Android"];
var result=arr1.concat(arr2);
document.writeln(result);
</script>
</body>
</html>
Output:
C,C++,Python,Java,JavaScript,Android
JavaScript Array reverse() method
Syntax
1. array.reverse()
Return
Example
<!DOCTYPE html>
<html>
<body>
<script>
var arr=["AngulaJS","Node.js","JQuery"];
var rev=arr.reverse();
document.writeln(rev);
</script>
</body>
</html>
Output:
JQuery,Node.js,AngulaJS
avaScript Array push() method
The JavaScript array push() method adds one or more elements to the
end of the given array. This method changes the length of the original
array.
Syntax
1. array.push(element1,element2....elementn)
Parameter
Return
Example 1
<!DOCTYPE html>
<html>
<body>
<script>
var arr=["AngularJS","Node.js"];
arr.push("JQuery");
document.writeln(arr);
</script>
</body>
</html>
Output:
AngularJS,Node.js,JQuery
JavaScript Array pop() method
The JavaScript array pop() method removes the last element from the
given array and return that element. This method changes the length of
the original array.
Syntax
The pop() method is represented by the following syntax:
1. array.pop()
Return
Example 1
<!DOCTYPE html>
<html>
<body>
<script>
var arr=["AngularJS","Node.js","JQuery"];
</script>
</body>
</html>
Output:
Orginal array: AngularJS,Node.js,JQuery
Extracted element: JQuery
Remaining elements: AngulaJS,Node.js
JavaScript Loops
1. for loop
2. while loop
3. do-while loop
4. for-in loop
1. for (initialization; condition; increment)
2. {
3. code to be executed
4. }
<!DOCTYPE html>
<html>
<body>
<script>
for (i=1; i<=5; i++)
document.write(i + "<br/>")
</script>
</body>
</html>
Output:
1
2
3
4
5
1. while (condition)
2. {
3. code to be executed
4. }
<!DOCTYPE html>
<html>
<body>
<script>
var i=11;
while (i<=15)
document.write(i + "<br/>");
i++;
</script>
</body>
</html>
Output:
11
12
13
14
15
1. do{
2. code to be executed
3. }while (condition);
<!DOCTYPE html>
<html>
<body>
<script>
var i=21;
do{
document.write(i + "<br/>");
i++;
}while (i<=25);
</script>
</body>
</html>
Output:
21
22
23
24
25
Note: Once you get keys, you can easily find their corresponding values.
You can also use for...in loop to iterate over string values. For example,
const string = 'code';
Output
c
o
d
e
JavaScript Functions
1. function functionName([arg1, arg2, ...argN]){
2. //code to be executed
3. }
Let’s see the simple example of function in JavaScript that does not has
arguments.
<html>
<body>
<script>
function msg(){
</script>
<input type="button" onclick="msg()" value="call function"/>
</body>
</html>
<html>
<body>
<script>
function getcube(number){
alert(number*number*number);
</script>
<form>
</form>
</body>
</html>
We can call function that returns a value and use it in our program. Let’s
see the example of function that returns value.
<html>
<body>
<script>
function getInfo(){
</script>
<script>
document.write(getInfo());
</script>
</body>
</html>
Dialog boxes
The prompt box takes the focus and forces the user to read the specified
message. So, it should avoid overusing this method because it stops the
user from accessing the other parts of the webpage until the box is
closed.
Syntax
1. prompt(message, default)
Values
Example
In this example, there is a simple prompt box with a message and two
buttons (OK and Cancel). Here, there is an HTML button which is used
for displaying the prompt box. We are using the onclick attribute and
call the fun() function where the prompt() is defined.
<html>
<head>
function fun() {
</script>
</head>
<body>
<form>
</form>
</body>
</html>
Output
After the execution of the above code and clicking the Click me button,
the output will be -
Syntax
1. alert(message);
Example
<html>
<head>
<script type="text/javascript">
function show() {
alert("It is an Alert dialog box");
}
</script>
</head>
<body>
<center>
<h1>Hello World :) :)</h1>
<h2>Welcome to javascript</h2>
<p>Click the following button </p>
<input type="button" value="Click Me" onclick="show();" />
</center>
</body>
</html>
Ajax
AJAX allows you to send only important information to the server not
the entire page. So only valuable data from the client side is routed to the
server side. It makes your application interactive and faster.
Where it is used?
There are too many web applications running on the web that are using
ajax technology like gmail, facebook,twitter, google map, youtube etc.
<!DOCTYPE html>
<html>
<body>
<script>
function loadDoc() {
xhttp.onreadystatechange = function() {
document.getElementById("demo").innerHTML =
this.responseText;
};
xhttp.send();
</script>
</body>
</html>
What is the meaning of readyState == 4 in AJAX?
State 4 means that the request had been sent, the server had finished
returning the response and the browser had finished downloading
the response content. So, it is right to say that the AJAX call has
completed.
All modern browsers (Chrome, Firefox, Edge (and IE7+), Safari, Opera)
have a built-in XMLHttpRequest object.
variable = new XMLHttpRequest();
AngularJS
Advantage of AngularJS
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.5/angula
r.min.js"></script>
</head>
<body ng-app="myapp">
<div ng-controller="HelloController" >
<h2>Hello {{helloTo.title}} !</h2>
</div>
<script>
angular.module("myapp", [])
.controller("HelloController", function($scope) {
$scope.helloTo = {};
$scope.helloTo.title = "World, AngularJS";
} );
</script>
</body>
</html>
View Part
<div ng-controller="HelloController" >
<h2>Hello {{helloTo.title}} !</h2>
</div>
Controller Part
<script>
angular.module("myapp", [])
.controller("HelloController", function($scope) {
$scope.helloTo = {};
$scope.helloTo.title = "World, AngularJS";
});
</script>