SlideShare a Scribd company logo
JavaScript
Language Fundamentals
About JavaScript
• JavaScript is not Java, or even related to Java
– The original name for JavaScript was “LiveScript”
– The name was changed when Java became popular
• Statements in JavaScript resemble statements in Java,
because both languages borrowed heavily from the C
language
– JavaScript should be fairly easy for Java programmers to learn
– However, JavaScript is a complete, full-featured, complex language
• JavaScript is seldom used to write complete “programs”
– Instead, small bits of JavaScript are used to add functionality to
HTML pages
– JavaScript is often used in conjunction with HTML “forms”
• JavaScript is reasonably platform-independent
Using JavaScript in a browser
• JavaScript code is included within <script> tags:
– <script type="text/javascript">
document.write("<h1>Hello World!</h1>") ;
</script>
• Notes:
– The type attribute is to allow you to use other scripting languages
(but JavaScript is the default)
– This simple code does the same thing as just putting <h1>Hello
World!</h1> in the same place in the HTML document
– The semicolon at the end of the JavaScript statement is optional
• You need semicolons if you put two or more statements on the same
line
• It’s probably a good idea to keep using semicolons
Dealing with old browsers
• Some old browsers do not recognize script tags
– These browsers will ignore the script tags but will
display the included JavaScript
– To get old browsers to ignore the whole thing, use:
<script type="text/javascript">
<!--
document.write("Hello World!")
//-->
</script>
– The <!-- introduces an HTML comment
– To get JavaScript to ignore the HTML close comment, -->, the //
starts a JavaScript comment, which extends to the end of the line
Where to put JavaScript
• JavaScript can be put in the <head> or in the <body> of an
HTML document
– JavaScript functions should be defined in the <head>
• This ensures that the function is loaded before it is needed
– JavaScript in the <body> will be executed as the page loads
• JavaScript can be put in a separate .js file
– <script src="myJavaScriptFile.js"></script>
– Put this HTML wherever you would put the actual JavaScript code
– An external .js file lets you use the same JavaScript on multiple
HTML pages
– The external .js file cannot itself contain a <script> tag
• JavaScript can be put in HTML form object, such as a button
– This JavaScript will be executed when the form object is used
Primitive data types
• JavaScript has three “primitive” types: number, string,
and boolean
– Everything else is an object
• Numbers are always stored as floating-point values
– Hexadecimal numbers begin with 0x
– Some platforms treat 0123 as octal, others treat it as decimal
• Strings may be enclosed in single quotes or double quotes
– Strings can contains n (newline), " (double quote), etc.
• Booleans are either true or false
– 0, "0", empty strings, undefined, null, and NaN are false ,
other values are true
Variables
• Variables are declared with a var statement:
– var pi = 3.1416, x, y, name = "Dr. Dave" ;
– Variables names must begin with a letter or underscore
– Variable names are case-sensitive
– Variables are untyped (they can hold values of any type)
– The word var is optional (but it’s good style to use it)
• Variables declared within a function are local to
that function (accessible only within that function)
• Variables declared outside a function are global
(accessible from anywhere on the page)
Operators, I
• Because most JavaScript syntax is borrowed from C (and is
therefore just like Java), we won’t spend much time on it
• Arithmetic operators:
+ - * / % ++ --
• Comparison operators:
< <= == != >= >
• Logical operators:
&& || ! (&& and || are short-circuit operators)
• Bitwise operators:
& | ^ ~ << >> >>>
• Assignment operators:
+= -= *= /= %= <<= >>= >>>= &= ^= |=
Operators, II
• String operator:
+
• The conditional operator:
condition ? value_if_true : value_if_false
• Special equality tests:
– == and != try to convert their operands to the same type
before performing the test
– === and !== consider their operands unequal if they are
of different types
• Additional operators (to be discussed):
new typeof void delete
Comments
• Comments are as in C or Java:
– Between // and the end of the line
– Between /* and */
• Java’s javadoc comments, /** ... */, are treated
just the same as /* ... */ comments; they have no
special meaning in JavaScript
Statements, I
• Most JavaScript statements are also borrowed
from C
– Assignment: greeting = "Hello, " + name;
– Compound statement:
{ statement; ...; statement }
– If statements:
if (condition) statement;
if (condition) statement; else statement;
– Familiar loop statements:
while (condition) statement;
do statement while (condition);
for (initialization; condition; increment) statement;
Statements, II
• The switch statement:
switch (expression){
case label :
statement;
break;
case label :
statement;
break;
...
default : statement;
}
• Other familiar statements:
– break;
– continue;
– The empty statement, as in ;; or { }
JavaScript is not Java
• By now you should have realized that you already know a
great deal of JavaScript
– So far we have talked about things that are the same as in Java
• JavaScript has some features that resemble features in Java:
– JavaScript has Objects and primitive data types
– JavaScript has qualified names; for example,
document.write("Hello World");
– JavaScript has Events and event handlers
– Exception handling in JavaScript is almost the same as in Java
• JavaScript has some features unlike anything in Java:
– Variable names are untyped: the type of a variable depends on the
value it is currently holding
– Objects and arrays are defined in quite a different way
– JavaScript has with statements and a new kind of for statement
Exception handling, I
• Exception handling in JavaScript is almost the same as in
Java
• throw expression creates and throws an exception
– The expression is the value of the exception, and can be of any
type (often, it's a literal String)
• try {
statements to try
} catch (e) { // Notice: no type declaration for e
exception-handling statements
} finally { // optional, as usual
code that is always executed
}
– With this form, there is only one catch clause
Exception handling, II
• try {
statements to try
} catch (e if test1) {
exception-handling for the case that test1 is true
} catch (e if test2) {
exception-handling for when test1 is false and test2 is true
} catch (e) {
exception-handling for when both test1and test2 are false
} finally { // optional, as usual
code that is always executed
}
• Typically, the test would be something like
e == "InvalidNameException"
Object literals
• You don’t declare the types of variables in JavaScript
• JavaScript has object literals, written with this syntax:
– { name1 : value1 , ... , nameN : valueN }
• Example (from Netscape’s documentation):
– car = {myCar: "Saturn", 7: "Mazda",
getCar: CarTypes("Honda"), special: Sales}
• The fields are myCar, getCar, 7 (this is a legal field name) ,
and special
• "Saturn" and "Mazda" are Strings
• CarTypes is a function call
• Sales is a variable you defined earlier
– Example use: document.write("I own a " + car.myCar);
Three ways to create an object
• You can use an object literal:
– var course = { number: "CIT597", teacher="Dr. Dave" }
• You can use new to create a “blank” object, and add fields
to it later:
– var course = new Object();
course.number = "CIT597";
course.teacher = "Dr. Dave";
• You can write and use a constructor:
– function Course(n, t) { // best placed in <head>
this.number = n;
this.teacher = t;
}
– var course = new Course("CIT597", "Dr. Dave");
Array literals
• You don’t declare the types of variables in JavaScript
• JavaScript has array literals, written with brackets and
commas
– Example: color = ["red", "yellow", "green", "blue"];
– Arrays are zero-based: color[0] is "red"
• If you put two commas in a row, the array has an “empty”
element in that location
– Example: color = ["red", , , "green", "blue"];
• color has 5 elements
– However, a single comma at the end is ignored
• Example: color = ["red", , , "green", "blue”,]; still has 5 elements
Four ways to create an array
• You can use an array literal:
var colors = ["red", "green", "blue"];
• You can use new Array() to create an empty array:
– var colors = new Array();
– You can add elements to the array later:
colors[0] = "red"; colors[2] = "blue"; colors[1]="green";
• You can use new Array(n) with a single numeric
argument to create an array of that size
– var colors = new Array(3);
• You can use new Array(…) with two or more arguments
to create an array containing those values:
– var colors = new Array("red","green", "blue");
The length of an array
• If myArray is an array, its length is given by
myArray.length
• Array length can be changed by assignment beyond the
current length
– Example: var myArray = new Array(5); myArray[10] = 3;
• Arrays are sparse, that is, space is only allocated for
elements that have been assigned a value
– Example: myArray[50000] = 3; is perfectly OK
– But indices must be between 0 and 232
-1
• As in C and Java, there are no two-dimensional arrays; but
you can have an array of arrays: myArray[5][3]
Arrays and objects
• Arrays are objects
• car = { myCar: "Saturn", 7: "Mazda" }
– car[7] is the same as car.7
– car.myCar is the same as car["myCar"]
• If you know the name of a property, you can use
dot notation: car.myCar
• If you don’t know the name of a property, but you
have it in a variable (or can compute it), you must
use array notation: car.["my" + "Car"]
Array functions
• If myArray is an array,
– myArray.sort() sorts the array alphabetically
– myArray.sort(function(a, b) { return a - b; }) sorts
numerically
– myArray.reverse() reverses the array elements
– myArray.push(…) adds any number of new elements
to the end of the array, and increases the array’s length
– myArray.pop() removes and returns the last element
of the array, and decrements the array’s length
– myArray.toString() returns a string containing the
values of the array elements, separated by commas
The for…in statement
• You can loop through all the properties of an object with
for (variable in object) statement;
– Example: for (var prop in course) {
document.write(prop + ": " + course[prop]);
}
– Possible output: teacher: Dr. Dave
number: CIT597
– The properties are accessed in an undefined order
– If you add or delete properties of the object within the loop, it is
undefined whether the loop will visit those properties
– Arrays are objects; applied to an array, for…in will visit the
“properties” 0, 1, 2, …
– Notice that course["teacher"] is equivalent to course.teacher
• You must use brackets if the property name is in a variable
The with statement
• with (object) statement ; uses the object as the
default prefix for variables in the statement
• For example, the following are equivalent:
– with (document.myForm) {
result.value = compute(myInput.value) ;
}
– document.myForm.result.value =
compute(document.myForm.myInput.value);
• One of my books hints at mysterious problems
resulting from the use of with, and recommends
against ever using it
Functions
• Functions should be defined in the <head> of an
HTML page, to ensure that they are loaded first
• The syntax for defining a function is:
function name(arg1, …, argN) { statements }
– The function may contain return value; statements
– Any variables declared within the function are local to
it
• The syntax for calling a function is just
name(arg1, …, argN)
• Simple parameters are passed by value, objects are
passed by reference
Regular expressions
• A regular expression can be written in either of two ways:
– Within slashes, such as re = /ab+c/
– With a constructor, such as re = new RegExp("ab+c")
• Regular expressions are almost the same as in Perl or Java
(only a few unusual features are missing)
• string.match(regexp) searches string for an occurrence of
regexp
– It returns null if nothing is found
– If regexp has the g (global search) flag set, match returns an array
of matched substrings
– If g is not set, match returns an array whose 0th
element is the
matched text, extra elements are the parenthesized subexpressions,
and the index property is the start position of the matched
substring
Warnings
• JavaScript is a big, complex language
– We’ve only scratched the surface
– It’s easy to get started in JavaScript, but if you need to
use it heavily, plan to invest time in learning it well
– Write and test your programs a little bit at a time
• JavaScript is not totally platform independent
– Expect different browsers to behave differently
– Write and test your programs a little bit at a time
• Browsers aren’t designed to report errors
– Don’t expect to get any helpful error messages
– Write and test your programs a little bit at a time
The End

More Related Content

Similar to Presentation JavaScript Introduction Data Types Variables Control Structure (20)

javascript client side scripting la.pptx
javascript client side scripting la.pptxjavascript client side scripting la.pptx
javascript client side scripting la.pptx
lekhacce
 
JavaScript Lecture notes.pptx
JavaScript Lecture notes.pptxJavaScript Lecture notes.pptx
JavaScript Lecture notes.pptx
NishaRohit6
 
Javascript tutorial basic for starter
Javascript tutorial basic for starterJavascript tutorial basic for starter
Javascript tutorial basic for starter
Marcello Harford
 
js.pptx
js.pptxjs.pptx
js.pptx
SuhaibKhan62
 
JavaScript - An Introduction
JavaScript - An IntroductionJavaScript - An Introduction
JavaScript - An Introduction
Manvendra Singh
 
Unit III.pptx IT3401 web essentials presentatio
Unit III.pptx IT3401 web essentials presentatioUnit III.pptx IT3401 web essentials presentatio
Unit III.pptx IT3401 web essentials presentatio
lakshitakumar291
 
Java script
Java scriptJava script
Java script
Abhishek Kesharwani
 
Java script
 Java script Java script
Java script
bosybosy
 
JavaScript Workshop
JavaScript WorkshopJavaScript Workshop
JavaScript Workshop
Pamela Fox
 
Javascript
JavascriptJavascript
Javascript
20261A05H0SRIKAKULAS
 
Learning space presentation1 learn Java script
Learning space presentation1 learn Java scriptLearning space presentation1 learn Java script
Learning space presentation1 learn Java script
engmk83
 
javascriptPresentation.pdf
javascriptPresentation.pdfjavascriptPresentation.pdf
javascriptPresentation.pdf
wildcat9335
 
An introduction to javascript
An introduction to javascriptAn introduction to javascript
An introduction to javascript
tonyh1
 
Lecture 5 javascript
Lecture 5 javascriptLecture 5 javascript
Lecture 5 javascript
Mujtaba Haider
 
JavaScript Getting Started
JavaScript Getting StartedJavaScript Getting Started
JavaScript Getting Started
Hazem Hagrass
 
Web programming
Web programmingWeb programming
Web programming
Leo Mark Villar
 
04-JS.pptx
04-JS.pptx04-JS.pptx
04-JS.pptx
RazanMazen4
 
04-JS.pptx
04-JS.pptx04-JS.pptx
04-JS.pptx
RazanMazen4
 
04-JS.pptx
04-JS.pptx04-JS.pptx
04-JS.pptx
RazanMazen4
 
WT Unit-3 PPT.pptx
WT Unit-3 PPT.pptxWT Unit-3 PPT.pptx
WT Unit-3 PPT.pptx
TusharTikia
 
javascript client side scripting la.pptx
javascript client side scripting la.pptxjavascript client side scripting la.pptx
javascript client side scripting la.pptx
lekhacce
 
JavaScript Lecture notes.pptx
JavaScript Lecture notes.pptxJavaScript Lecture notes.pptx
JavaScript Lecture notes.pptx
NishaRohit6
 
Javascript tutorial basic for starter
Javascript tutorial basic for starterJavascript tutorial basic for starter
Javascript tutorial basic for starter
Marcello Harford
 
JavaScript - An Introduction
JavaScript - An IntroductionJavaScript - An Introduction
JavaScript - An Introduction
Manvendra Singh
 
Unit III.pptx IT3401 web essentials presentatio
Unit III.pptx IT3401 web essentials presentatioUnit III.pptx IT3401 web essentials presentatio
Unit III.pptx IT3401 web essentials presentatio
lakshitakumar291
 
Java script
 Java script Java script
Java script
bosybosy
 
JavaScript Workshop
JavaScript WorkshopJavaScript Workshop
JavaScript Workshop
Pamela Fox
 
Learning space presentation1 learn Java script
Learning space presentation1 learn Java scriptLearning space presentation1 learn Java script
Learning space presentation1 learn Java script
engmk83
 
javascriptPresentation.pdf
javascriptPresentation.pdfjavascriptPresentation.pdf
javascriptPresentation.pdf
wildcat9335
 
An introduction to javascript
An introduction to javascriptAn introduction to javascript
An introduction to javascript
tonyh1
 
JavaScript Getting Started
JavaScript Getting StartedJavaScript Getting Started
JavaScript Getting Started
Hazem Hagrass
 
WT Unit-3 PPT.pptx
WT Unit-3 PPT.pptxWT Unit-3 PPT.pptx
WT Unit-3 PPT.pptx
TusharTikia
 

Recently uploaded (20)

fHUINhKG5lM1WBBk608.pptxfhjjhhjffhiuhhghj
fHUINhKG5lM1WBBk608.pptxfhjjhhjffhiuhhghjfHUINhKG5lM1WBBk608.pptxfhjjhhjffhiuhhghj
fHUINhKG5lM1WBBk608.pptxfhjjhhjffhiuhhghj
yadavshivank2006
 
362 Alec Data Center Solutions-Slysium Data Center-AUH-ABB Furse.pdf
362 Alec Data Center Solutions-Slysium Data Center-AUH-ABB Furse.pdf362 Alec Data Center Solutions-Slysium Data Center-AUH-ABB Furse.pdf
362 Alec Data Center Solutions-Slysium Data Center-AUH-ABB Furse.pdf
djiceramil
 
Montreal Dreamin' 25 - Introduction to the MuleSoft AI Chain (MAC) Project
Montreal Dreamin' 25 - Introduction to the MuleSoft AI Chain (MAC) ProjectMontreal Dreamin' 25 - Introduction to the MuleSoft AI Chain (MAC) Project
Montreal Dreamin' 25 - Introduction to the MuleSoft AI Chain (MAC) Project
Alexandra N. Martinez
 
Ppt on the related on the solar power system for electric vehicle engineering
Ppt on the related on the solar power system for electric vehicle engineeringPpt on the related on the solar power system for electric vehicle engineering
Ppt on the related on the solar power system for electric vehicle engineering
ravindrabodke
 
WIRELESS COMMUNICATION SECURITY AND IT’S PROTECTION METHODS
WIRELESS COMMUNICATION SECURITY AND IT’S PROTECTION METHODSWIRELESS COMMUNICATION SECURITY AND IT’S PROTECTION METHODS
WIRELESS COMMUNICATION SECURITY AND IT’S PROTECTION METHODS
samueljackson3773
 
社内勉強会資料_Chain of Thought .
社内勉強会資料_Chain of Thought                           .社内勉強会資料_Chain of Thought                           .
社内勉強会資料_Chain of Thought .
NABLAS株式会社
 
22PCOAM16 _ML_Unit 3 Notes & Question bank
22PCOAM16 _ML_Unit 3 Notes & Question bank22PCOAM16 _ML_Unit 3 Notes & Question bank
22PCOAM16 _ML_Unit 3 Notes & Question bank
Guru Nanak Technical Institutions
 
Universal Human Values and professional ethics Quantum AKTU BVE401
Universal Human Values and professional ethics Quantum AKTU BVE401Universal Human Values and professional ethics Quantum AKTU BVE401
Universal Human Values and professional ethics Quantum AKTU BVE401
Unknown
 
How Binning Affects LED Performance & Consistency.pdf
How Binning Affects LED Performance & Consistency.pdfHow Binning Affects LED Performance & Consistency.pdf
How Binning Affects LED Performance & Consistency.pdf
Mina Anis
 
First Review PPT gfinal gyft ftu liu yrfut go
First Review PPT gfinal gyft  ftu liu yrfut goFirst Review PPT gfinal gyft  ftu liu yrfut go
First Review PPT gfinal gyft ftu liu yrfut go
Sowndarya6
 
Top Cite Articles- International Journal on Soft Computing, Artificial Intell...
Top Cite Articles- International Journal on Soft Computing, Artificial Intell...Top Cite Articles- International Journal on Soft Computing, Artificial Intell...
Top Cite Articles- International Journal on Soft Computing, Artificial Intell...
ijscai
 
362 Alec Data Center Solutions-Slysium Data Center-AUH-Adaptaflex.pdf
362 Alec Data Center Solutions-Slysium Data Center-AUH-Adaptaflex.pdf362 Alec Data Center Solutions-Slysium Data Center-AUH-Adaptaflex.pdf
362 Alec Data Center Solutions-Slysium Data Center-AUH-Adaptaflex.pdf
djiceramil
 
A DECISION SUPPORT SYSTEM FOR ESTIMATING COST OF SOFTWARE PROJECTS USING A HY...
A DECISION SUPPORT SYSTEM FOR ESTIMATING COST OF SOFTWARE PROJECTS USING A HY...A DECISION SUPPORT SYSTEM FOR ESTIMATING COST OF SOFTWARE PROJECTS USING A HY...
A DECISION SUPPORT SYSTEM FOR ESTIMATING COST OF SOFTWARE PROJECTS USING A HY...
ijfcstjournal
 
Pavement and its types, Application of rigid and Flexible Pavements
Pavement and its types, Application of rigid and Flexible PavementsPavement and its types, Application of rigid and Flexible Pavements
Pavement and its types, Application of rigid and Flexible Pavements
Sakthivel M
 
chemistry investigatory project for class 12
chemistry investigatory project for class 12chemistry investigatory project for class 12
chemistry investigatory project for class 12
Susis10
 
Development of Portable Biomass Briquetting Machine (S, A & D)-1.pptx
Development of Portable Biomass Briquetting Machine (S, A & D)-1.pptxDevelopment of Portable Biomass Briquetting Machine (S, A & D)-1.pptx
Development of Portable Biomass Briquetting Machine (S, A & D)-1.pptx
aniket862935
 
362 Alec Data Center Solutions-Slysium Data Center-AUH-ABB Furse.pdf
362 Alec Data Center Solutions-Slysium Data Center-AUH-ABB Furse.pdf362 Alec Data Center Solutions-Slysium Data Center-AUH-ABB Furse.pdf
362 Alec Data Center Solutions-Slysium Data Center-AUH-ABB Furse.pdf
djiceramil
 
Structure of OS ppt Structure of OsS ppt
Structure of OS ppt Structure of OsS pptStructure of OS ppt Structure of OsS ppt
Structure of OS ppt Structure of OsS ppt
Wahajch
 
Rigor, ethics, wellbeing and resilience in the ICT doctoral journey
Rigor, ethics, wellbeing and resilience in the ICT doctoral journeyRigor, ethics, wellbeing and resilience in the ICT doctoral journey
Rigor, ethics, wellbeing and resilience in the ICT doctoral journey
Yannis
 
02 - Ethics & Professionalism - BEM, IEM, MySET.PPT
02 - Ethics & Professionalism - BEM, IEM, MySET.PPT02 - Ethics & Professionalism - BEM, IEM, MySET.PPT
02 - Ethics & Professionalism - BEM, IEM, MySET.PPT
SharinAbGhani1
 
fHUINhKG5lM1WBBk608.pptxfhjjhhjffhiuhhghj
fHUINhKG5lM1WBBk608.pptxfhjjhhjffhiuhhghjfHUINhKG5lM1WBBk608.pptxfhjjhhjffhiuhhghj
fHUINhKG5lM1WBBk608.pptxfhjjhhjffhiuhhghj
yadavshivank2006
 
362 Alec Data Center Solutions-Slysium Data Center-AUH-ABB Furse.pdf
362 Alec Data Center Solutions-Slysium Data Center-AUH-ABB Furse.pdf362 Alec Data Center Solutions-Slysium Data Center-AUH-ABB Furse.pdf
362 Alec Data Center Solutions-Slysium Data Center-AUH-ABB Furse.pdf
djiceramil
 
Montreal Dreamin' 25 - Introduction to the MuleSoft AI Chain (MAC) Project
Montreal Dreamin' 25 - Introduction to the MuleSoft AI Chain (MAC) ProjectMontreal Dreamin' 25 - Introduction to the MuleSoft AI Chain (MAC) Project
Montreal Dreamin' 25 - Introduction to the MuleSoft AI Chain (MAC) Project
Alexandra N. Martinez
 
Ppt on the related on the solar power system for electric vehicle engineering
Ppt on the related on the solar power system for electric vehicle engineeringPpt on the related on the solar power system for electric vehicle engineering
Ppt on the related on the solar power system for electric vehicle engineering
ravindrabodke
 
WIRELESS COMMUNICATION SECURITY AND IT’S PROTECTION METHODS
WIRELESS COMMUNICATION SECURITY AND IT’S PROTECTION METHODSWIRELESS COMMUNICATION SECURITY AND IT’S PROTECTION METHODS
WIRELESS COMMUNICATION SECURITY AND IT’S PROTECTION METHODS
samueljackson3773
 
社内勉強会資料_Chain of Thought .
社内勉強会資料_Chain of Thought                           .社内勉強会資料_Chain of Thought                           .
社内勉強会資料_Chain of Thought .
NABLAS株式会社
 
Universal Human Values and professional ethics Quantum AKTU BVE401
Universal Human Values and professional ethics Quantum AKTU BVE401Universal Human Values and professional ethics Quantum AKTU BVE401
Universal Human Values and professional ethics Quantum AKTU BVE401
Unknown
 
How Binning Affects LED Performance & Consistency.pdf
How Binning Affects LED Performance & Consistency.pdfHow Binning Affects LED Performance & Consistency.pdf
How Binning Affects LED Performance & Consistency.pdf
Mina Anis
 
First Review PPT gfinal gyft ftu liu yrfut go
First Review PPT gfinal gyft  ftu liu yrfut goFirst Review PPT gfinal gyft  ftu liu yrfut go
First Review PPT gfinal gyft ftu liu yrfut go
Sowndarya6
 
Top Cite Articles- International Journal on Soft Computing, Artificial Intell...
Top Cite Articles- International Journal on Soft Computing, Artificial Intell...Top Cite Articles- International Journal on Soft Computing, Artificial Intell...
Top Cite Articles- International Journal on Soft Computing, Artificial Intell...
ijscai
 
362 Alec Data Center Solutions-Slysium Data Center-AUH-Adaptaflex.pdf
362 Alec Data Center Solutions-Slysium Data Center-AUH-Adaptaflex.pdf362 Alec Data Center Solutions-Slysium Data Center-AUH-Adaptaflex.pdf
362 Alec Data Center Solutions-Slysium Data Center-AUH-Adaptaflex.pdf
djiceramil
 
A DECISION SUPPORT SYSTEM FOR ESTIMATING COST OF SOFTWARE PROJECTS USING A HY...
A DECISION SUPPORT SYSTEM FOR ESTIMATING COST OF SOFTWARE PROJECTS USING A HY...A DECISION SUPPORT SYSTEM FOR ESTIMATING COST OF SOFTWARE PROJECTS USING A HY...
A DECISION SUPPORT SYSTEM FOR ESTIMATING COST OF SOFTWARE PROJECTS USING A HY...
ijfcstjournal
 
Pavement and its types, Application of rigid and Flexible Pavements
Pavement and its types, Application of rigid and Flexible PavementsPavement and its types, Application of rigid and Flexible Pavements
Pavement and its types, Application of rigid and Flexible Pavements
Sakthivel M
 
chemistry investigatory project for class 12
chemistry investigatory project for class 12chemistry investigatory project for class 12
chemistry investigatory project for class 12
Susis10
 
Development of Portable Biomass Briquetting Machine (S, A & D)-1.pptx
Development of Portable Biomass Briquetting Machine (S, A & D)-1.pptxDevelopment of Portable Biomass Briquetting Machine (S, A & D)-1.pptx
Development of Portable Biomass Briquetting Machine (S, A & D)-1.pptx
aniket862935
 
362 Alec Data Center Solutions-Slysium Data Center-AUH-ABB Furse.pdf
362 Alec Data Center Solutions-Slysium Data Center-AUH-ABB Furse.pdf362 Alec Data Center Solutions-Slysium Data Center-AUH-ABB Furse.pdf
362 Alec Data Center Solutions-Slysium Data Center-AUH-ABB Furse.pdf
djiceramil
 
Structure of OS ppt Structure of OsS ppt
Structure of OS ppt Structure of OsS pptStructure of OS ppt Structure of OsS ppt
Structure of OS ppt Structure of OsS ppt
Wahajch
 
Rigor, ethics, wellbeing and resilience in the ICT doctoral journey
Rigor, ethics, wellbeing and resilience in the ICT doctoral journeyRigor, ethics, wellbeing and resilience in the ICT doctoral journey
Rigor, ethics, wellbeing and resilience in the ICT doctoral journey
Yannis
 
02 - Ethics & Professionalism - BEM, IEM, MySET.PPT
02 - Ethics & Professionalism - BEM, IEM, MySET.PPT02 - Ethics & Professionalism - BEM, IEM, MySET.PPT
02 - Ethics & Professionalism - BEM, IEM, MySET.PPT
SharinAbGhani1
 
Ad

Presentation JavaScript Introduction Data Types Variables Control Structure

  • 2. About JavaScript • JavaScript is not Java, or even related to Java – The original name for JavaScript was “LiveScript” – The name was changed when Java became popular • Statements in JavaScript resemble statements in Java, because both languages borrowed heavily from the C language – JavaScript should be fairly easy for Java programmers to learn – However, JavaScript is a complete, full-featured, complex language • JavaScript is seldom used to write complete “programs” – Instead, small bits of JavaScript are used to add functionality to HTML pages – JavaScript is often used in conjunction with HTML “forms” • JavaScript is reasonably platform-independent
  • 3. Using JavaScript in a browser • JavaScript code is included within <script> tags: – <script type="text/javascript"> document.write("<h1>Hello World!</h1>") ; </script> • Notes: – The type attribute is to allow you to use other scripting languages (but JavaScript is the default) – This simple code does the same thing as just putting <h1>Hello World!</h1> in the same place in the HTML document – The semicolon at the end of the JavaScript statement is optional • You need semicolons if you put two or more statements on the same line • It’s probably a good idea to keep using semicolons
  • 4. Dealing with old browsers • Some old browsers do not recognize script tags – These browsers will ignore the script tags but will display the included JavaScript – To get old browsers to ignore the whole thing, use: <script type="text/javascript"> <!-- document.write("Hello World!") //--> </script> – The <!-- introduces an HTML comment – To get JavaScript to ignore the HTML close comment, -->, the // starts a JavaScript comment, which extends to the end of the line
  • 5. Where to put JavaScript • JavaScript can be put in the <head> or in the <body> of an HTML document – JavaScript functions should be defined in the <head> • This ensures that the function is loaded before it is needed – JavaScript in the <body> will be executed as the page loads • JavaScript can be put in a separate .js file – <script src="myJavaScriptFile.js"></script> – Put this HTML wherever you would put the actual JavaScript code – An external .js file lets you use the same JavaScript on multiple HTML pages – The external .js file cannot itself contain a <script> tag • JavaScript can be put in HTML form object, such as a button – This JavaScript will be executed when the form object is used
  • 6. Primitive data types • JavaScript has three “primitive” types: number, string, and boolean – Everything else is an object • Numbers are always stored as floating-point values – Hexadecimal numbers begin with 0x – Some platforms treat 0123 as octal, others treat it as decimal • Strings may be enclosed in single quotes or double quotes – Strings can contains n (newline), " (double quote), etc. • Booleans are either true or false – 0, "0", empty strings, undefined, null, and NaN are false , other values are true
  • 7. Variables • Variables are declared with a var statement: – var pi = 3.1416, x, y, name = "Dr. Dave" ; – Variables names must begin with a letter or underscore – Variable names are case-sensitive – Variables are untyped (they can hold values of any type) – The word var is optional (but it’s good style to use it) • Variables declared within a function are local to that function (accessible only within that function) • Variables declared outside a function are global (accessible from anywhere on the page)
  • 8. Operators, I • Because most JavaScript syntax is borrowed from C (and is therefore just like Java), we won’t spend much time on it • Arithmetic operators: + - * / % ++ -- • Comparison operators: < <= == != >= > • Logical operators: && || ! (&& and || are short-circuit operators) • Bitwise operators: & | ^ ~ << >> >>> • Assignment operators: += -= *= /= %= <<= >>= >>>= &= ^= |=
  • 9. Operators, II • String operator: + • The conditional operator: condition ? value_if_true : value_if_false • Special equality tests: – == and != try to convert their operands to the same type before performing the test – === and !== consider their operands unequal if they are of different types • Additional operators (to be discussed): new typeof void delete
  • 10. Comments • Comments are as in C or Java: – Between // and the end of the line – Between /* and */ • Java’s javadoc comments, /** ... */, are treated just the same as /* ... */ comments; they have no special meaning in JavaScript
  • 11. Statements, I • Most JavaScript statements are also borrowed from C – Assignment: greeting = "Hello, " + name; – Compound statement: { statement; ...; statement } – If statements: if (condition) statement; if (condition) statement; else statement; – Familiar loop statements: while (condition) statement; do statement while (condition); for (initialization; condition; increment) statement;
  • 12. Statements, II • The switch statement: switch (expression){ case label : statement; break; case label : statement; break; ... default : statement; } • Other familiar statements: – break; – continue; – The empty statement, as in ;; or { }
  • 13. JavaScript is not Java • By now you should have realized that you already know a great deal of JavaScript – So far we have talked about things that are the same as in Java • JavaScript has some features that resemble features in Java: – JavaScript has Objects and primitive data types – JavaScript has qualified names; for example, document.write("Hello World"); – JavaScript has Events and event handlers – Exception handling in JavaScript is almost the same as in Java • JavaScript has some features unlike anything in Java: – Variable names are untyped: the type of a variable depends on the value it is currently holding – Objects and arrays are defined in quite a different way – JavaScript has with statements and a new kind of for statement
  • 14. Exception handling, I • Exception handling in JavaScript is almost the same as in Java • throw expression creates and throws an exception – The expression is the value of the exception, and can be of any type (often, it's a literal String) • try { statements to try } catch (e) { // Notice: no type declaration for e exception-handling statements } finally { // optional, as usual code that is always executed } – With this form, there is only one catch clause
  • 15. Exception handling, II • try { statements to try } catch (e if test1) { exception-handling for the case that test1 is true } catch (e if test2) { exception-handling for when test1 is false and test2 is true } catch (e) { exception-handling for when both test1and test2 are false } finally { // optional, as usual code that is always executed } • Typically, the test would be something like e == "InvalidNameException"
  • 16. Object literals • You don’t declare the types of variables in JavaScript • JavaScript has object literals, written with this syntax: – { name1 : value1 , ... , nameN : valueN } • Example (from Netscape’s documentation): – car = {myCar: "Saturn", 7: "Mazda", getCar: CarTypes("Honda"), special: Sales} • The fields are myCar, getCar, 7 (this is a legal field name) , and special • "Saturn" and "Mazda" are Strings • CarTypes is a function call • Sales is a variable you defined earlier – Example use: document.write("I own a " + car.myCar);
  • 17. Three ways to create an object • You can use an object literal: – var course = { number: "CIT597", teacher="Dr. Dave" } • You can use new to create a “blank” object, and add fields to it later: – var course = new Object(); course.number = "CIT597"; course.teacher = "Dr. Dave"; • You can write and use a constructor: – function Course(n, t) { // best placed in <head> this.number = n; this.teacher = t; } – var course = new Course("CIT597", "Dr. Dave");
  • 18. Array literals • You don’t declare the types of variables in JavaScript • JavaScript has array literals, written with brackets and commas – Example: color = ["red", "yellow", "green", "blue"]; – Arrays are zero-based: color[0] is "red" • If you put two commas in a row, the array has an “empty” element in that location – Example: color = ["red", , , "green", "blue"]; • color has 5 elements – However, a single comma at the end is ignored • Example: color = ["red", , , "green", "blue”,]; still has 5 elements
  • 19. Four ways to create an array • You can use an array literal: var colors = ["red", "green", "blue"]; • You can use new Array() to create an empty array: – var colors = new Array(); – You can add elements to the array later: colors[0] = "red"; colors[2] = "blue"; colors[1]="green"; • You can use new Array(n) with a single numeric argument to create an array of that size – var colors = new Array(3); • You can use new Array(…) with two or more arguments to create an array containing those values: – var colors = new Array("red","green", "blue");
  • 20. The length of an array • If myArray is an array, its length is given by myArray.length • Array length can be changed by assignment beyond the current length – Example: var myArray = new Array(5); myArray[10] = 3; • Arrays are sparse, that is, space is only allocated for elements that have been assigned a value – Example: myArray[50000] = 3; is perfectly OK – But indices must be between 0 and 232 -1 • As in C and Java, there are no two-dimensional arrays; but you can have an array of arrays: myArray[5][3]
  • 21. Arrays and objects • Arrays are objects • car = { myCar: "Saturn", 7: "Mazda" } – car[7] is the same as car.7 – car.myCar is the same as car["myCar"] • If you know the name of a property, you can use dot notation: car.myCar • If you don’t know the name of a property, but you have it in a variable (or can compute it), you must use array notation: car.["my" + "Car"]
  • 22. Array functions • If myArray is an array, – myArray.sort() sorts the array alphabetically – myArray.sort(function(a, b) { return a - b; }) sorts numerically – myArray.reverse() reverses the array elements – myArray.push(…) adds any number of new elements to the end of the array, and increases the array’s length – myArray.pop() removes and returns the last element of the array, and decrements the array’s length – myArray.toString() returns a string containing the values of the array elements, separated by commas
  • 23. The for…in statement • You can loop through all the properties of an object with for (variable in object) statement; – Example: for (var prop in course) { document.write(prop + ": " + course[prop]); } – Possible output: teacher: Dr. Dave number: CIT597 – The properties are accessed in an undefined order – If you add or delete properties of the object within the loop, it is undefined whether the loop will visit those properties – Arrays are objects; applied to an array, for…in will visit the “properties” 0, 1, 2, … – Notice that course["teacher"] is equivalent to course.teacher • You must use brackets if the property name is in a variable
  • 24. The with statement • with (object) statement ; uses the object as the default prefix for variables in the statement • For example, the following are equivalent: – with (document.myForm) { result.value = compute(myInput.value) ; } – document.myForm.result.value = compute(document.myForm.myInput.value); • One of my books hints at mysterious problems resulting from the use of with, and recommends against ever using it
  • 25. Functions • Functions should be defined in the <head> of an HTML page, to ensure that they are loaded first • The syntax for defining a function is: function name(arg1, …, argN) { statements } – The function may contain return value; statements – Any variables declared within the function are local to it • The syntax for calling a function is just name(arg1, …, argN) • Simple parameters are passed by value, objects are passed by reference
  • 26. Regular expressions • A regular expression can be written in either of two ways: – Within slashes, such as re = /ab+c/ – With a constructor, such as re = new RegExp("ab+c") • Regular expressions are almost the same as in Perl or Java (only a few unusual features are missing) • string.match(regexp) searches string for an occurrence of regexp – It returns null if nothing is found – If regexp has the g (global search) flag set, match returns an array of matched substrings – If g is not set, match returns an array whose 0th element is the matched text, extra elements are the parenthesized subexpressions, and the index property is the start position of the matched substring
  • 27. Warnings • JavaScript is a big, complex language – We’ve only scratched the surface – It’s easy to get started in JavaScript, but if you need to use it heavily, plan to invest time in learning it well – Write and test your programs a little bit at a time • JavaScript is not totally platform independent – Expect different browsers to behave differently – Write and test your programs a little bit at a time • Browsers aren’t designed to report errors – Don’t expect to get any helpful error messages – Write and test your programs a little bit at a time