SlideShare a Scribd company logo
1 of 80
Client Side Scripr
VB Script
JAVASCRIPT
Server Side Script
PHP
.net
PYTHON
Types of variable
• Var
• Let
• Const
Var x=“Hello” // variable name
X=90;//update new value
Document.write(x);
Let fname=“sameer”;
Let fname=“rahul”; // not declare again
Const s=“hello”;
S=“teena”;//not allow
Var x =“Hello World”;--------string
Var x=25;-------number
Var x=true;-------boolean
Var x=[“html”,”css”,”php”];----undefined
Var x={first:”june”,last:”doe”};----Object
Var x= null;-----null
Var x;--------undefined
Document.write(typeof x);
Operator Description
+ Addition
- Subtraction
* Multiplication
** Exponentiation
/ Division
% Modulus (‘remainder)
++ Increment
-- Decrement
=
+=
-=
*=
/=
%=
**=
Var x=90;
Console.log(x+20);
Console.table([1,2,3]);
Console.error(“error”);
Cosole.warn(“warning”);
Console .clear()
Console.time(“test”);
Console.timeEnd(“test”);
>
>=
<
<=
== only check content not data type
=== equal value and equal type
!=
!==not equal value or not equal type
Console.log(20>4);
If
If –------ else
If ------ else if ------- else
&&
||
!
 ? :
 Swtch(expression)
 {
 Case condition 1 : statement(s)
 Break;
 Case condition 1 : statement(s)
 Break;
 Case condition 1 : statement(s)
 Break;
 Case condition 1 : statement(s)
 Break;
 Default : statement(s)
 }
Used to message display
Alert(“Hello Everybody”);
Alert(“Hello Everybody”+”hi”);
Confirm(“hello”);
Var a=confirm(“are u happy”);
Alert(a);
Take input from user
Prompt(“hello”);
Syntax:
• Function functionName()//defining
• {
• }
• functionName();//calling
Syntax :
Function sum(parameter1, parameter2)
{
}
Sum(a,b);
Function name()
{
Return value;
}
var a=name();
Var a=10; // global variable
Function functionName()
{
Var b=25;//local variable
}
• Click(onclick)
 Double Click(ondblclick)
 Right Click(oncontextmenu)
 Mouse Hover(onmouseenter)
 Mouse Out(onmouseout)
 Mouse Down(onmousedown)
 Mouse Up(onmouseup)
 Key Press(onkeypress)
 Key Up(onkeyup)
 Load(onload)
 Unload(onunload)
 Resize(onresize)
 Scroll(onscroll)
Function Hello()
{
Alert(“Hello”);
}
<button onclick=“hello()”>Click Me<button>
While loop
Do/while loop
For loop
For/in loop(objects)
forEach loop(Array)
Initialization
While(condition)
{
//statement
Increment/decrement
}
Initialization
Do
{
//statement
Increment/decrement
}while(condition);
For(initialization;condition;increment/decre
ment)
{
//statement
}
The break statement "jumps out" of a loop.
The continue statement "jumps over" one
iteration in the loop.
Loop inside loop
For(initia;condtion;incre/decre)
{
For(initia;condition;incre/decre)
{
//statement
}
}
 JavaScript label mainly use with break and/or
continue statement.
 JavaScript label is unique name as an
identifier for a statement.
 General Syntax
 label:
 or
 label:
 {
 // Scope of the block
 }
<script>
outer:
for(var i = 1; i <= 3; i++){
inner:
for (var j = 0; j <= 5; j++){
if (j == 2){
document.writeln("skipped");
continue inner;
} else if(j == 4){
document.writeln("terminated");
break inner;
}
document.writeln("i : " + i + ", j :" + j);
}
document.writeln();
}
</script>
JavaScript array is a collection of values
that are belonging to a same data type.
Notes : JavaScript Array use numeric
indexes where as Object use numeric as
well as string name.
my_array = [value1, value2, ..., valueN];
my_array = new Array(value1, value2, ...,
valueN);
my_array = new Array(array_size);
 Array Literal Method
• var random_list = [5, 12, 8, 22, 2, 30];
• var domain = [".com", ".net", ".org", ".gov"];
 JavaScript Built-in Array Constructor Method
 var random_list = new Array(5, 12, 8, 22, 2, 30);
 var domain = new Array(".com", ".net", ".org", ".gov");
 JavaScript size of array length
 var domain = new Array(10);
 Or
 var domain = new Array( );
 Find the length of Array Array.length
 domain.length
Var a={
 [“Harry”,18,”male,”,”B. Com”],
 [“Sunny”,19,”male,”,”BCA”],
 [“Sarah”,18,”female,”,”B. Com”],
 [“Tom”,17,”male,”,”B. A”]
 };
 a[1]=19;
delete a[1];
Sort() Slice() Find()
Reverse() Splice() findIndex()
Pop() isArray() Includes()
Push() indexOf() Entries()
Shift() lastIndexOf() forEach()
Unshift() Some() toString()
Concat() Every() valueOf()
Join() Filter() Fill()
Var a=[1,2,3];
Var a={
Fname:””Ram”;
Lname:”kumar”;
Age:18;
Country:”india”;
};
Var a=new Object();
A.fname:”Ram”;
A.lname=“Kumar”;
Var student={
{ name:”Ram”,age:15},
{ name:”kavita”,age:17},
{ name:”Rahul”,age:25},
{ name:”Mohan”,age:20},
};
Var a=[1,2,3,4,];
[10,20,30,40]
A.map();
A.map(function(){
Statement});
Length indexOf() Concat()
toLowerCase() lastIndexOf() Split()
toUpperCase() Replace() Repeat()
Includes() Trim() Slice()
startsWith() charAt() Substr()
endsWith() charCodeAt() Substring()
Search() fromCharCode() toString()
Match() valueOf()
Number()
parseInt()
parseFloat()
isFinite()
isInteger()
toFixed(x)
toPrecision(x)
Ceil(x) Sqrt(x)
Floor(x) Cbrt(x)
Round(x) Pow(x,y)
Trunc(c) Random()
Max(x,y,z,..n) Abs(x)
Min(x,y,z...n) PI
Var now=new Date();
toDateString() getMilliseconds()
getDate() setDate()
getFullYear() setFullYear()
getMonth() setHours()
getDay() setMilliseconds()
getHours() setMinutes()
getMinutes() setMonth()
getSeconds() setSeconds()
Unit 3 JAVA Script.pptx
Unit 3 JAVA Script.pptx
Unit 3 JAVA Script.pptx
Unit 3 JAVA Script.pptx
Unit 3 JAVA Script.pptx
Unit 3 JAVA Script.pptx
Unit 3 JAVA Script.pptx
Unit 3 JAVA Script.pptx
Unit 3 JAVA Script.pptx
Unit 3 JAVA Script.pptx
Unit 3 JAVA Script.pptx
Unit 3 JAVA Script.pptx
Unit 3 JAVA Script.pptx
Unit 3 JAVA Script.pptx
Unit 3 JAVA Script.pptx
Unit 3 JAVA Script.pptx
Unit 3 JAVA Script.pptx
Unit 3 JAVA Script.pptx
Unit 3 JAVA Script.pptx
Unit 3 JAVA Script.pptx
Unit 3 JAVA Script.pptx
Unit 3 JAVA Script.pptx
Unit 3 JAVA Script.pptx

More Related Content

Similar to Unit 3 JAVA Script.pptx

Java script introducation & basics
Java script introducation & basicsJava script introducation & basics
Java script introducation & basics
H K
 
10. session 10 loops and arrays
10. session 10   loops and arrays10. session 10   loops and arrays
10. session 10 loops and arrays
Phúc Đỗ
 
Php tips-and-tricks4128
Php tips-and-tricks4128Php tips-and-tricks4128
Php tips-and-tricks4128
PrinceGuru MS
 

Similar to Unit 3 JAVA Script.pptx (20)

Javascript - Beyond-jQuery
Javascript - Beyond-jQueryJavascript - Beyond-jQuery
Javascript - Beyond-jQuery
 
JavaScript / Web Engineering / Web Development / html + css + js/presentation
JavaScript / Web Engineering / Web Development / html + css + js/presentationJavaScript / Web Engineering / Web Development / html + css + js/presentation
JavaScript / Web Engineering / Web Development / html + css + js/presentation
 
Open Source Search: An Analysis
Open Source Search: An AnalysisOpen Source Search: An Analysis
Open Source Search: An Analysis
 
CoffeeScript - A Rubyist's Love Affair
CoffeeScript - A Rubyist's Love AffairCoffeeScript - A Rubyist's Love Affair
CoffeeScript - A Rubyist's Love Affair
 
Rails is not just Ruby
Rails is not just RubyRails is not just Ruby
Rails is not just Ruby
 
Javascript
JavascriptJavascript
Javascript
 
Intermediate PHP
Intermediate PHPIntermediate PHP
Intermediate PHP
 
Php Tutorials for Beginners
Php Tutorials for BeginnersPhp Tutorials for Beginners
Php Tutorials for Beginners
 
php AND MYSQL _ppt.pdf
php AND MYSQL _ppt.pdfphp AND MYSQL _ppt.pdf
php AND MYSQL _ppt.pdf
 
Java script introducation & basics
Java script introducation & basicsJava script introducation & basics
Java script introducation & basics
 
PHP PPT FILE
PHP PPT FILEPHP PPT FILE
PHP PPT FILE
 
10. session 10 loops and arrays
10. session 10   loops and arrays10. session 10   loops and arrays
10. session 10 loops and arrays
 
Damn Fine CoffeeScript
Damn Fine CoffeeScriptDamn Fine CoffeeScript
Damn Fine CoffeeScript
 
Javascript
JavascriptJavascript
Javascript
 
Php tips-and-tricks4128
Php tips-and-tricks4128Php tips-and-tricks4128
Php tips-and-tricks4128
 
JavaScript Fundamentals with Angular and Lodash
JavaScript Fundamentals with Angular and LodashJavaScript Fundamentals with Angular and Lodash
JavaScript Fundamentals with Angular and Lodash
 
Java script arrays
Java script arraysJava script arrays
Java script arrays
 
Java script arrays
Java script arraysJava script arrays
Java script arrays
 
PHP and MySQL
PHP and MySQLPHP and MySQL
PHP and MySQL
 
Internationalizing CakePHP Applications
Internationalizing CakePHP ApplicationsInternationalizing CakePHP Applications
Internationalizing CakePHP Applications
 

More from meghana092

Internal_Research_Supervisors_June.2022.pdf
Internal_Research_Supervisors_June.2022.pdfInternal_Research_Supervisors_June.2022.pdf
Internal_Research_Supervisors_June.2022.pdf
meghana092
 
Unit III CSS & JAVA Script.pdf
Unit III CSS & JAVA Script.pdfUnit III CSS & JAVA Script.pdf
Unit III CSS & JAVA Script.pdf
meghana092
 
Week 1 Lec 1-5 with watermarking.pdf
Week 1 Lec 1-5 with watermarking.pdfWeek 1 Lec 1-5 with watermarking.pdf
Week 1 Lec 1-5 with watermarking.pdf
meghana092
 

More from meghana092 (6)

Internal_Research_Supervisors_June.2022.pdf
Internal_Research_Supervisors_June.2022.pdfInternal_Research_Supervisors_June.2022.pdf
Internal_Research_Supervisors_June.2022.pdf
 
Unit III CSS & JAVA Script.pdf
Unit III CSS & JAVA Script.pdfUnit III CSS & JAVA Script.pdf
Unit III CSS & JAVA Script.pdf
 
Unit 1.pptx
Unit 1.pptxUnit 1.pptx
Unit 1.pptx
 
ch01.ppt
ch01.pptch01.ppt
ch01.ppt
 
ACA-Lect10.pptx
ACA-Lect10.pptxACA-Lect10.pptx
ACA-Lect10.pptx
 
Week 1 Lec 1-5 with watermarking.pdf
Week 1 Lec 1-5 with watermarking.pdfWeek 1 Lec 1-5 with watermarking.pdf
Week 1 Lec 1-5 with watermarking.pdf
 

Recently uploaded

Call Girls In Doddaballapur Road ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Doddaballapur Road ☎ 7737669865 🥵 Book Your One night StandCall Girls In Doddaballapur Road ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Doddaballapur Road ☎ 7737669865 🥵 Book Your One night Stand
amitlee9823
 
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...
only4webmaster01
 
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
amitlee9823
 
Mg Road Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Banga...
Mg Road Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Banga...Mg Road Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Banga...
Mg Road Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Banga...
amitlee9823
 
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
ZurliaSoop
 
Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...
amitlee9823
 
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al BarshaAl Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
AroojKhan71
 
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
amitlee9823
 
Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
amitlee9823
 
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
amitlee9823
 
Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
amitlee9823
 

Recently uploaded (20)

Call Girls In Doddaballapur Road ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Doddaballapur Road ☎ 7737669865 🥵 Book Your One night StandCall Girls In Doddaballapur Road ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Doddaballapur Road ☎ 7737669865 🥵 Book Your One night Stand
 
(NEHA) Call Girls Katra Call Now 8617697112 Katra Escorts 24x7
(NEHA) Call Girls Katra Call Now 8617697112 Katra Escorts 24x7(NEHA) Call Girls Katra Call Now 8617697112 Katra Escorts 24x7
(NEHA) Call Girls Katra Call Now 8617697112 Katra Escorts 24x7
 
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...
 
Midocean dropshipping via API with DroFx
Midocean dropshipping via API with DroFxMidocean dropshipping via API with DroFx
Midocean dropshipping via API with DroFx
 
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
Chintamani Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore ...
 
Halmar dropshipping via API with DroFx
Halmar  dropshipping  via API with DroFxHalmar  dropshipping  via API with DroFx
Halmar dropshipping via API with DroFx
 
Mg Road Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Banga...
Mg Road Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Banga...Mg Road Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Banga...
Mg Road Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Banga...
 
Discover Why Less is More in B2B Research
Discover Why Less is More in B2B ResearchDiscover Why Less is More in B2B Research
Discover Why Less is More in B2B Research
 
Capstone Project on IBM Data Analytics Program
Capstone Project on IBM Data Analytics ProgramCapstone Project on IBM Data Analytics Program
Capstone Project on IBM Data Analytics Program
 
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Thane West Call On 9920725232 With Body to body massage...
 
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al BarshaAl Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
 
5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed
5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed
5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed
 
BDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort Service
BDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort ServiceBDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort Service
BDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort Service
 
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
 
Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
 
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
 
BigBuy dropshipping via API with DroFx.pptx
BigBuy dropshipping via API with DroFx.pptxBigBuy dropshipping via API with DroFx.pptx
BigBuy dropshipping via API with DroFx.pptx
 
Anomaly detection and data imputation within time series
Anomaly detection and data imputation within time seriesAnomaly detection and data imputation within time series
Anomaly detection and data imputation within time series
 
Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
 

Unit 3 JAVA Script.pptx

Editor's Notes

  1. RIGHT CLICK go inspect for error in java script go console
  2. Applicable only number type.
  3. Clear used to clear the warning.
  4. Basically used in if condition
  5. A=prompt(“hello”) Alert(a)
  6. Default value concept also explain
  7. Scroll resize work on body tag Key Press(onkeypress) input Key Up(onkeyup) input Load(onload) body Unload(onunload)body Resize(onresize) body Scroll(onscroll) div
  8. Arg[a]=prompt(“Enter the value :”);
  9. a.sort() a.reverse() a.pop() --- delete last value a.push(“Ram”) ----- insert in last a.shift()----- delete first index a.unshift(“Sita”);-----------insert first place a.Concat(“”,””);-------atthe end or a.concat(b.c); c.join(“/”); a.Slice(start,end) a.slice(-2) Splice(index,howmany delete,”new value”)------insert at specified position a.splice(2,0,”neha”,”karan”); a.splice(3,2);
  10. Includes used to search the string Search return position Match(/is/g) regular expression