SlideShare a Scribd company logo
JAVA SCRIPT
SESSION NO 3

11/25/2013

Developed By: Saif Ullah Dar

1
SESSION OBJECTIVES
1) Java Script Data Types.
2) Primitive Data Types.
3) Composite Data Types.
4) Trivial Data Types.
5) Java Script Variables.
6) Rules for Declaration of Variables
7) Java Script Keywords.
8) Scope of Variables.
9) Examples
10) Quiz
11/25/2013

Developed By: Saif Ullah Dar

2
JAVA SCRIPT DATA TYPES
• Data is the information and Data Types means the
ways in which we can retrieve the data.
• There are two Main types of the Data Types in Java
Script Language
1. Primitive Data Types
2. Composite Data Types

11/25/2013

Developed By: Saif Ullah Dar

3
JAVA SCRIPT DATA TYPES

11/25/2013

Developed By: Saif Ullah Dar

4
PRIMITIVE DATA TYPES
• JavaScript has three “primitive” types: number, string,
and Boolean
• 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
11/25/2013

Developed By: Saif Ullah Dar

5
PRIMITIVE DATA TYPES

11/25/2013

Developed By: Saif Ullah Dar

6
COMPOSITE DATA TYPES
• A composite data type stores a collection of
multiple related values, unlike primitive data types.
• JavaScript supports a composite data type known
as objects, Functions, Arrays
• This will be discussed in the next Chapter in details.

11/25/2013

Developed By: Saif Ullah Dar

7
NOTE
• Java does not make a distinction between integer
values and floating-point values. All numbers in
JavaScript are represented as floating-point values.
JavaScript represents numbers using the 64-bit
floating-point format defined by the IEEE 754
standard.

11/25/2013

Developed By: Saif Ullah Dar

8
TRIVIAL DATA TYPES
JavaScript also defines two trivial data
types, null and undefined, each of which defines
only a single value.
The null keyword specifies that a variable does not
hold any value. (the null value is not equal to zero
because zero is a calculate value while null refers to
the absence of a value)

11/25/2013

Developed By: Saif Ullah Dar

9
JavaScript Variables
• Like many other programming
languages, JavaScript has variables.
• Variables can be thought of as named containers.
• You can place data into these containers and then
refer to the data simply by naming the container.
• Before you use a variable in a JavaScript
program, you must declare it.
• Variables are declared with the var keyword.

11/25/2013

Developed By: Saif Ullah Dar

10
DEFINING VARIABLES
<script type="text/javascript">
<!–
var money;
var name;
//-->
</script>

11/25/2013

<script type="text/javascript">
<!–
var money, name;
//-->
</script>

Developed By: Saif Ullah Dar

11
RULES TO DEFINED VARIABLES
Java Script is a case-sensitive language.
These rules are that a variable name:
Can consist of digit, underscore, and alphabets.
Must begin with a letter or underscore character
Cannot begin with a number and cannot contain
any punctuation marks.
• Cannot contain any kind of special characters such
as +,*,%,and so on.
• Cannot contain spaces
• Cannot be a Java Script keyword
•
•
•
•
•

11/25/2013

Developed By: Saif Ullah Dar

12
VARIABLE INITIALIZATION
• Storing a value in a
variable is called variable
initialization.
• You can do variable
initialization at the time of
variable creation or later
point in time when you
need that variable.
• For instance, you might
create a variable
named money and
assign the value 2000.50
to it later. For another
variable you can assign a
value the time of
initialization as follows:
11/25/2013

<script
type="text/javascript">
<!–
var name = “Saif Ullah";
var money;
money = 2000.50;
//-->
</script>

Developed By: Saif Ullah Dar

13
JAVA SCRIPT IMPORTANT HINTS
• Use the var keyword only for declaration or
initialization. Once for the life of any variable name
in a document. You should not re-declare same
variable twice.
• JavaScript is untyped language. This means that a
JavaScript variable can hold a value of any data
type. Unlike many other languages, you don't have
to tell JavaScript during variable declaration what
type of value the variable will hold. The value type
of a variable can change during the execution of a
program and JavaScript takes care of it
automatically.
11/25/2013

Developed By: Saif Ullah Dar

14
JAVA SCRIPT KEYWORDS
• The following are reserved
words in JavaScript.
• They cannot be used as
JavaScript
variables, functions, metho
ds, loop labels, or any
object names.

11/25/2013

abstract
boolean
break
byte
case
catch
char
class
const
continue
debugg
er
default
delete
do
double

Developed By: Saif Ullah Dar

else
enum
export
extends
false
final
finally
float
for
function
goto
if
impleme
nts
import
in

instance
of
int
interface
long
native
new
null
package
private
protecte
d
public
return
short
static
super

switch
synchroni
zed
this
throw
throws
transient
true
try
typeof
var
void
volatile
while
with

15
ESCAPE SEQUENCES CHARACTERS


There are multiple escape sequence characters in JavaScript that
provides various kind of formatting.

11/25/2013

Developed By: Saif Ullah Dar

16
SCOPE OF VARIABLES
The scope of a variable is the region of your program in which
it is defined. JavaScript variable will have only two scopes.
a) Global Variables: A global variable has global scope which
means it is defined everywhere in your JavaScript code.
b) Local Variables: A local variable will be visible only within a
function where it is defined. Function parameters are
always local to that function.
Within the body of a function, a local variable takes
precedence over a global variable with the same name. If
you declare a local variable or function parameter with the
same name as a global variable, you effectively hide the
global variable.
EXAMPLE OF DYNAMIC VARIABLES
• JavaScript has dynamic types.
• This means that the same variable
can be used as different types:
Example
var x;
// Now x is undefined
var x = 5;
// Now x is a Number
var x = “Saif Ullah Dar";
// Now x is a
String

11/25/2013

Developed By: Saif Ullah Dar

18
JAVA SCRIPT STRINGS
• A string is a variable which stores a series of
characters like “Saif Ullah Dar".
• A string can be any text inside quotes. You can
use single or double quotes:
Example
var carname="Volvo XC60";
var carname='Volvo XC60';
 You can use quotes inside a string, as long as they don't
match the quotes surrounding the string:

Example
var answer="It's alright";
var answer="He is called ‘Saif'";
var answer='He is called “Mr Dar"';
11/25/2013

Developed By: Saif Ullah Dar

19
JAVASCRIPT NUMBERS
• JavaScript has only one type of numbers.
• Numbers can be written with, or without decimals:
Example
var x1=34.00;
// Written with
decimals
var x2=34;
// Written without
decimals
 Extra large or extra small numbers can be written with scientific
(exponential) notation:
Example
var y=123e5;
var z=123e-5;

11/25/2013

// 12300000
// 0.00123

Developed By: Saif Ullah Dar

20
JAVA SCRIPT BOOLEANS
• Booleans can only have two values: true or false.
• Booleans are often used in conditional testing.
You will learn more about conditional testing in a
later chapter of this tutorial.

var x=true;
var y=false;

11/25/2013

Developed By: Saif Ullah Dar

21
<!DOCTYPE html>
<html>
<body>
<script>
var firstname;
firstname=“Saif";
document.write(firstname);
document.write("<br>");
firstname=“Ullah";
document.write(firstname);
</script>

<p>The script above declares a
variable,
assigns a value to it, displays the value,
changes the value,
and displays the value again.</p>
<body>
</html>
11/25/2013

Developed By: Saif Ullah Dar

22
QUIZ:1
Inside which HTML element do we put the JavaScript?
(1)<javascript>
(2)<js>
(3)<script>
(4)<scripting>

11/25/2013

Developed By: Saif Ullah Dar

23
ANS:1
Inside which HTML element do we put the JavaScript?
(1)<javascript>
(2)<js>
(3)<script>
(4)<scripting>

11/25/2013

Developed By: Saif Ullah Dar

24
QUIZ:2
What is the correct JavaScript syntax to write "Hello World"?
(1)document.write("Hello World");
(2)echo "Hello World";
(3)("Hello World");
(4)response.write("Hello World");

11/25/2013

Developed By: Saif Ullah Dar

25
ANS:2
What is the correct JavaScript syntax to write "Hello World"?
(1)document.write("Hello World");
(2)echo "Hello World";
(3)("Hello World");
(4)response.write("Hello World");

11/25/2013

Developed By: Saif Ullah Dar

26
THANK YOU
SAIF ULLAH DAR

11/25/2013

Developed By: Saif Ullah Dar

27
Ad

Recommended

Java script Session No 1
Java script Session No 1
Saif Ullah Dar
 
JAVA SCRIPT
JAVA SCRIPT
Go4Guru
 
Java script by Act Academy
Java script by Act Academy
actanimation
 
JavaScript Performance (at SFJS)
JavaScript Performance (at SFJS)
Steve Souders
 
Javascript tutorial
Javascript tutorial
Abhishek Kesharwani
 
Javascript by geetanjali
Javascript by geetanjali
Geetanjali Bhosale
 
Java script
Java script
reddivarihareesh
 
JavaScript Roadmap III - ECMAScript
JavaScript Roadmap III - ECMAScript
Aswin Barath
 
Javascript
Javascript
Momentum Design Lab
 
Introduction to Javascript programming
Introduction to Javascript programming
Fulvio Corno
 
Java Script An Introduction By HWA
Java Script An Introduction By HWA
Emma Wood
 
JavaScript Jump Start 20220214
JavaScript Jump Start 20220214
Haim Michael
 
Introduction to java_script
Introduction to java_script
Basavaraj Hampali
 
JavaScript guide 2020 Learn JavaScript
JavaScript guide 2020 Learn JavaScript
Laurence Svekis ✔
 
Javascript
Javascript
Nagarajan
 
Wt unit 6 ppts web services
Wt unit 6 ppts web services
PUNE VIDYARTHI GRIHA'S COLLEGE OF ENGINEERING, NASHIK
 
JavaScript - Chapter 3 - Introduction
JavaScript - Chapter 3 - Introduction
WebStackAcademy
 
Introduction to Javascript By Satyen
Introduction to Javascript By Satyen
Satyen Pandya
 
Node.js Crash Course (Jump Start)
Node.js Crash Course (Jump Start)
Haim Michael
 
Introduction to JavaScript
Introduction to JavaScript
Marlon Jamera
 
Java script
Java script
Sadeek Mohammed
 
Wt unit 2 ppts client side technology
Wt unit 2 ppts client side technology
PUNE VIDYARTHI GRIHA'S COLLEGE OF ENGINEERING, NASHIK
 
Wt unit 5 client &amp; server side framework
Wt unit 5 client &amp; server side framework
PUNE VIDYARTHI GRIHA'S COLLEGE OF ENGINEERING, NASHIK
 
From User Action to Framework Reaction
From User Action to Framework Reaction
jbandi
 
[2015/2016] Require JS and Handlebars JS
[2015/2016] Require JS and Handlebars JS
Ivano Malavolta
 
Javascript
Javascript
Mallikarjuna G D
 
Introduction To JavaScript
Introduction To JavaScript
Reema
 
Java script
Java script
Rajkiran Mummadi
 
Session No1
Session No1
Saif Ullah Dar
 
Session no 4
Session no 4
Saif Ullah Dar
 

More Related Content

What's hot (20)

Javascript
Javascript
Momentum Design Lab
 
Introduction to Javascript programming
Introduction to Javascript programming
Fulvio Corno
 
Java Script An Introduction By HWA
Java Script An Introduction By HWA
Emma Wood
 
JavaScript Jump Start 20220214
JavaScript Jump Start 20220214
Haim Michael
 
Introduction to java_script
Introduction to java_script
Basavaraj Hampali
 
JavaScript guide 2020 Learn JavaScript
JavaScript guide 2020 Learn JavaScript
Laurence Svekis ✔
 
Javascript
Javascript
Nagarajan
 
Wt unit 6 ppts web services
Wt unit 6 ppts web services
PUNE VIDYARTHI GRIHA'S COLLEGE OF ENGINEERING, NASHIK
 
JavaScript - Chapter 3 - Introduction
JavaScript - Chapter 3 - Introduction
WebStackAcademy
 
Introduction to Javascript By Satyen
Introduction to Javascript By Satyen
Satyen Pandya
 
Node.js Crash Course (Jump Start)
Node.js Crash Course (Jump Start)
Haim Michael
 
Introduction to JavaScript
Introduction to JavaScript
Marlon Jamera
 
Java script
Java script
Sadeek Mohammed
 
Wt unit 2 ppts client side technology
Wt unit 2 ppts client side technology
PUNE VIDYARTHI GRIHA'S COLLEGE OF ENGINEERING, NASHIK
 
Wt unit 5 client &amp; server side framework
Wt unit 5 client &amp; server side framework
PUNE VIDYARTHI GRIHA'S COLLEGE OF ENGINEERING, NASHIK
 
From User Action to Framework Reaction
From User Action to Framework Reaction
jbandi
 
[2015/2016] Require JS and Handlebars JS
[2015/2016] Require JS and Handlebars JS
Ivano Malavolta
 
Javascript
Javascript
Mallikarjuna G D
 
Introduction To JavaScript
Introduction To JavaScript
Reema
 
Java script
Java script
Rajkiran Mummadi
 
Introduction to Javascript programming
Introduction to Javascript programming
Fulvio Corno
 
Java Script An Introduction By HWA
Java Script An Introduction By HWA
Emma Wood
 
JavaScript Jump Start 20220214
JavaScript Jump Start 20220214
Haim Michael
 
JavaScript guide 2020 Learn JavaScript
JavaScript guide 2020 Learn JavaScript
Laurence Svekis ✔
 
JavaScript - Chapter 3 - Introduction
JavaScript - Chapter 3 - Introduction
WebStackAcademy
 
Introduction to Javascript By Satyen
Introduction to Javascript By Satyen
Satyen Pandya
 
Node.js Crash Course (Jump Start)
Node.js Crash Course (Jump Start)
Haim Michael
 
Introduction to JavaScript
Introduction to JavaScript
Marlon Jamera
 
From User Action to Framework Reaction
From User Action to Framework Reaction
jbandi
 
[2015/2016] Require JS and Handlebars JS
[2015/2016] Require JS and Handlebars JS
Ivano Malavolta
 
Introduction To JavaScript
Introduction To JavaScript
Reema
 

Viewers also liked (15)

Session No1
Session No1
Saif Ullah Dar
 
Session no 4
Session no 4
Saif Ullah Dar
 
C programming session 09
C programming session 09
Dushmanta Nath
 
C programming session 11
C programming session 11
Dushmanta Nath
 
Session no 2
Session no 2
Saif Ullah Dar
 
C programming session 07
C programming session 07
Dushmanta Nath
 
C programming session 03
C programming session 03
Dushmanta Nath
 
C programming session 04
C programming session 04
Dushmanta Nath
 
C programming session 02
C programming session 02
Dushmanta Nath
 
C programming session 05
C programming session 05
Dushmanta Nath
 
C programming session 08
C programming session 08
Dushmanta Nath
 
C programming session 01
C programming session 01
Dushmanta Nath
 
An Overview of HTML, CSS & Java Script
An Overview of HTML, CSS & Java Script
Fahim Abdullah
 
Session 3 Java Script
Session 3 Java Script
Muhammad Hesham
 
C language (Collected By Dushmanta)
C language (Collected By Dushmanta)
Dushmanta Nath
 
C programming session 09
C programming session 09
Dushmanta Nath
 
C programming session 11
C programming session 11
Dushmanta Nath
 
C programming session 07
C programming session 07
Dushmanta Nath
 
C programming session 03
C programming session 03
Dushmanta Nath
 
C programming session 04
C programming session 04
Dushmanta Nath
 
C programming session 02
C programming session 02
Dushmanta Nath
 
C programming session 05
C programming session 05
Dushmanta Nath
 
C programming session 08
C programming session 08
Dushmanta Nath
 
C programming session 01
C programming session 01
Dushmanta Nath
 
An Overview of HTML, CSS & Java Script
An Overview of HTML, CSS & Java Script
Fahim Abdullah
 
C language (Collected By Dushmanta)
C language (Collected By Dushmanta)
Dushmanta Nath
 
Ad

Similar to Java script session 3 (20)

WT Unit-3 PPT.pptx
WT Unit-3 PPT.pptx
TusharTikia
 
Js datatypes
Js datatypes
Sireesh K
 
Java script basics
Java script basics
Shrivardhan Limbkar
 
JS-Slides-2_74526582652945_73562876535.ppt
JS-Slides-2_74526582652945_73562876535.ppt
goddemon7675
 
Lecture7
Lecture7
Majid Taghiloo
 
JavaScript
JavaScript
BIT DURG
 
javascript client side scripting la.pptx
javascript client side scripting la.pptx
lekhacce
 
Java script
Java script
Abhishek Kesharwani
 
Final Java-script.pptx
Final Java-script.pptx
AlkanthiSomesh
 
JavaScript Comprehensive Overview
JavaScript Comprehensive Overview
Mohamed Loey
 
Introduction to JavaScript
Introduction to JavaScript
Andres Baravalle
 
Java script
Java script
GowriLatha1
 
Powerpoint about JavaScript presentation
Powerpoint about JavaScript presentation
XaiMaeChanelleSopsop
 
Introduction to java
Introduction to java
rishi ram khanal
 
js.pptx
js.pptx
SuhaibKhan62
 
JavaScript New Tutorial Class XI and XII.pptx
JavaScript New Tutorial Class XI and XII.pptx
rish15r890
 
Java Script
Java Script
Sarvan15
 
Java Script
Java Script
Sarvan15
 
JavaScript ppt for introduction of javascripta
JavaScript ppt for introduction of javascripta
nehatanveer5765
 
Introduction to Scala JS
Introduction to Scala JS
Knoldus Inc.
 
WT Unit-3 PPT.pptx
WT Unit-3 PPT.pptx
TusharTikia
 
Js datatypes
Js datatypes
Sireesh K
 
JS-Slides-2_74526582652945_73562876535.ppt
JS-Slides-2_74526582652945_73562876535.ppt
goddemon7675
 
JavaScript
JavaScript
BIT DURG
 
javascript client side scripting la.pptx
javascript client side scripting la.pptx
lekhacce
 
Final Java-script.pptx
Final Java-script.pptx
AlkanthiSomesh
 
JavaScript Comprehensive Overview
JavaScript Comprehensive Overview
Mohamed Loey
 
Introduction to JavaScript
Introduction to JavaScript
Andres Baravalle
 
Powerpoint about JavaScript presentation
Powerpoint about JavaScript presentation
XaiMaeChanelleSopsop
 
JavaScript New Tutorial Class XI and XII.pptx
JavaScript New Tutorial Class XI and XII.pptx
rish15r890
 
Java Script
Java Script
Sarvan15
 
Java Script
Java Script
Sarvan15
 
JavaScript ppt for introduction of javascripta
JavaScript ppt for introduction of javascripta
nehatanveer5765
 
Introduction to Scala JS
Introduction to Scala JS
Knoldus Inc.
 
Ad

More from Saif Ullah Dar (7)

Session no 3
Session no 3
Saif Ullah Dar
 
Session no 1
Session no 1
Saif Ullah Dar
 
Session no 1 html
Session no 1 html
Saif Ullah Dar
 
Session no 3 bzu
Session no 3 bzu
Saif Ullah Dar
 
Session no 2 For BZU
Session no 2 For BZU
Saif Ullah Dar
 
Java script session 4
Java script session 4
Saif Ullah Dar
 
Xml Session No 1
Xml Session No 1
Saif Ullah Dar
 

Recently uploaded (20)

Python Conference Singapore - 19 Jun 2025
Python Conference Singapore - 19 Jun 2025
ninefyi
 
PyCon SG 25 - Firecracker Made Easy with Python.pdf
PyCon SG 25 - Firecracker Made Easy with Python.pdf
Muhammad Yuga Nugraha
 
Creating Inclusive Digital Learning with AI: A Smarter, Fairer Future
Creating Inclusive Digital Learning with AI: A Smarter, Fairer Future
Impelsys Inc.
 
Smarter Aviation Data Management: Lessons from Swedavia Airports and Sweco
Smarter Aviation Data Management: Lessons from Swedavia Airports and Sweco
Safe Software
 
FIDO Seminar: Authentication for a Billion Consumers - Amazon.pptx
FIDO Seminar: Authentication for a Billion Consumers - Amazon.pptx
FIDO Alliance
 
Using the SQLExecutor for Data Quality Management: aka One man's love for the...
Using the SQLExecutor for Data Quality Management: aka One man's love for the...
Safe Software
 
AI VIDEO MAGAZINE - June 2025 - r/aivideo
AI VIDEO MAGAZINE - June 2025 - r/aivideo
1pcity Studios, Inc
 
10 Key Challenges for AI within the EU Data Protection Framework.pdf
10 Key Challenges for AI within the EU Data Protection Framework.pdf
Priyanka Aash
 
You are not excused! How to avoid security blind spots on the way to production
You are not excused! How to avoid security blind spots on the way to production
Michele Leroux Bustamante
 
MuleSoft for AgentForce : Topic Center and API Catalog
MuleSoft for AgentForce : Topic Center and API Catalog
shyamraj55
 
The Future of Technology: 2025-2125 by Saikat Basu.pdf
The Future of Technology: 2025-2125 by Saikat Basu.pdf
Saikat Basu
 
"How to survive Black Friday: preparing e-commerce for a peak season", Yurii ...
"How to survive Black Friday: preparing e-commerce for a peak season", Yurii ...
Fwdays
 
Security Tips for Enterprise Azure Solutions
Security Tips for Enterprise Azure Solutions
Michele Leroux Bustamante
 
From Manual to Auto Searching- FME in the Driver's Seat
From Manual to Auto Searching- FME in the Driver's Seat
Safe Software
 
FIDO Seminar: Targeting Trust: The Future of Identity in the Workforce.pptx
FIDO Seminar: Targeting Trust: The Future of Identity in the Workforce.pptx
FIDO Alliance
 
Improving Data Integrity: Synchronization between EAM and ArcGIS Utility Netw...
Improving Data Integrity: Synchronization between EAM and ArcGIS Utility Netw...
Safe Software
 
OpenPOWER Foundation & Open-Source Core Innovations
OpenPOWER Foundation & Open-Source Core Innovations
IBM
 
FIDO Seminar: New Data: Passkey Adoption in the Workforce.pptx
FIDO Seminar: New Data: Passkey Adoption in the Workforce.pptx
FIDO Alliance
 
Securing Account Lifecycles in the Age of Deepfakes.pptx
Securing Account Lifecycles in the Age of Deepfakes.pptx
FIDO Alliance
 
9-1-1 Addressing: End-to-End Automation Using FME
9-1-1 Addressing: End-to-End Automation Using FME
Safe Software
 
Python Conference Singapore - 19 Jun 2025
Python Conference Singapore - 19 Jun 2025
ninefyi
 
PyCon SG 25 - Firecracker Made Easy with Python.pdf
PyCon SG 25 - Firecracker Made Easy with Python.pdf
Muhammad Yuga Nugraha
 
Creating Inclusive Digital Learning with AI: A Smarter, Fairer Future
Creating Inclusive Digital Learning with AI: A Smarter, Fairer Future
Impelsys Inc.
 
Smarter Aviation Data Management: Lessons from Swedavia Airports and Sweco
Smarter Aviation Data Management: Lessons from Swedavia Airports and Sweco
Safe Software
 
FIDO Seminar: Authentication for a Billion Consumers - Amazon.pptx
FIDO Seminar: Authentication for a Billion Consumers - Amazon.pptx
FIDO Alliance
 
Using the SQLExecutor for Data Quality Management: aka One man's love for the...
Using the SQLExecutor for Data Quality Management: aka One man's love for the...
Safe Software
 
AI VIDEO MAGAZINE - June 2025 - r/aivideo
AI VIDEO MAGAZINE - June 2025 - r/aivideo
1pcity Studios, Inc
 
10 Key Challenges for AI within the EU Data Protection Framework.pdf
10 Key Challenges for AI within the EU Data Protection Framework.pdf
Priyanka Aash
 
You are not excused! How to avoid security blind spots on the way to production
You are not excused! How to avoid security blind spots on the way to production
Michele Leroux Bustamante
 
MuleSoft for AgentForce : Topic Center and API Catalog
MuleSoft for AgentForce : Topic Center and API Catalog
shyamraj55
 
The Future of Technology: 2025-2125 by Saikat Basu.pdf
The Future of Technology: 2025-2125 by Saikat Basu.pdf
Saikat Basu
 
"How to survive Black Friday: preparing e-commerce for a peak season", Yurii ...
"How to survive Black Friday: preparing e-commerce for a peak season", Yurii ...
Fwdays
 
Security Tips for Enterprise Azure Solutions
Security Tips for Enterprise Azure Solutions
Michele Leroux Bustamante
 
From Manual to Auto Searching- FME in the Driver's Seat
From Manual to Auto Searching- FME in the Driver's Seat
Safe Software
 
FIDO Seminar: Targeting Trust: The Future of Identity in the Workforce.pptx
FIDO Seminar: Targeting Trust: The Future of Identity in the Workforce.pptx
FIDO Alliance
 
Improving Data Integrity: Synchronization between EAM and ArcGIS Utility Netw...
Improving Data Integrity: Synchronization between EAM and ArcGIS Utility Netw...
Safe Software
 
OpenPOWER Foundation & Open-Source Core Innovations
OpenPOWER Foundation & Open-Source Core Innovations
IBM
 
FIDO Seminar: New Data: Passkey Adoption in the Workforce.pptx
FIDO Seminar: New Data: Passkey Adoption in the Workforce.pptx
FIDO Alliance
 
Securing Account Lifecycles in the Age of Deepfakes.pptx
Securing Account Lifecycles in the Age of Deepfakes.pptx
FIDO Alliance
 
9-1-1 Addressing: End-to-End Automation Using FME
9-1-1 Addressing: End-to-End Automation Using FME
Safe Software
 

Java script session 3

  • 1. JAVA SCRIPT SESSION NO 3 11/25/2013 Developed By: Saif Ullah Dar 1
  • 2. SESSION OBJECTIVES 1) Java Script Data Types. 2) Primitive Data Types. 3) Composite Data Types. 4) Trivial Data Types. 5) Java Script Variables. 6) Rules for Declaration of Variables 7) Java Script Keywords. 8) Scope of Variables. 9) Examples 10) Quiz 11/25/2013 Developed By: Saif Ullah Dar 2
  • 3. JAVA SCRIPT DATA TYPES • Data is the information and Data Types means the ways in which we can retrieve the data. • There are two Main types of the Data Types in Java Script Language 1. Primitive Data Types 2. Composite Data Types 11/25/2013 Developed By: Saif Ullah Dar 3
  • 4. JAVA SCRIPT DATA TYPES 11/25/2013 Developed By: Saif Ullah Dar 4
  • 5. PRIMITIVE DATA TYPES • JavaScript has three “primitive” types: number, string, and Boolean • 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 11/25/2013 Developed By: Saif Ullah Dar 5
  • 7. COMPOSITE DATA TYPES • A composite data type stores a collection of multiple related values, unlike primitive data types. • JavaScript supports a composite data type known as objects, Functions, Arrays • This will be discussed in the next Chapter in details. 11/25/2013 Developed By: Saif Ullah Dar 7
  • 8. NOTE • Java does not make a distinction between integer values and floating-point values. All numbers in JavaScript are represented as floating-point values. JavaScript represents numbers using the 64-bit floating-point format defined by the IEEE 754 standard. 11/25/2013 Developed By: Saif Ullah Dar 8
  • 9. TRIVIAL DATA TYPES JavaScript also defines two trivial data types, null and undefined, each of which defines only a single value. The null keyword specifies that a variable does not hold any value. (the null value is not equal to zero because zero is a calculate value while null refers to the absence of a value) 11/25/2013 Developed By: Saif Ullah Dar 9
  • 10. JavaScript Variables • Like many other programming languages, JavaScript has variables. • Variables can be thought of as named containers. • You can place data into these containers and then refer to the data simply by naming the container. • Before you use a variable in a JavaScript program, you must declare it. • Variables are declared with the var keyword. 11/25/2013 Developed By: Saif Ullah Dar 10
  • 11. DEFINING VARIABLES <script type="text/javascript"> <!– var money; var name; //--> </script> 11/25/2013 <script type="text/javascript"> <!– var money, name; //--> </script> Developed By: Saif Ullah Dar 11
  • 12. RULES TO DEFINED VARIABLES Java Script is a case-sensitive language. These rules are that a variable name: Can consist of digit, underscore, and alphabets. Must begin with a letter or underscore character Cannot begin with a number and cannot contain any punctuation marks. • Cannot contain any kind of special characters such as +,*,%,and so on. • Cannot contain spaces • Cannot be a Java Script keyword • • • • • 11/25/2013 Developed By: Saif Ullah Dar 12
  • 13. VARIABLE INITIALIZATION • Storing a value in a variable is called variable initialization. • You can do variable initialization at the time of variable creation or later point in time when you need that variable. • For instance, you might create a variable named money and assign the value 2000.50 to it later. For another variable you can assign a value the time of initialization as follows: 11/25/2013 <script type="text/javascript"> <!– var name = “Saif Ullah"; var money; money = 2000.50; //--> </script> Developed By: Saif Ullah Dar 13
  • 14. JAVA SCRIPT IMPORTANT HINTS • Use the var keyword only for declaration or initialization. Once for the life of any variable name in a document. You should not re-declare same variable twice. • JavaScript is untyped language. This means that a JavaScript variable can hold a value of any data type. Unlike many other languages, you don't have to tell JavaScript during variable declaration what type of value the variable will hold. The value type of a variable can change during the execution of a program and JavaScript takes care of it automatically. 11/25/2013 Developed By: Saif Ullah Dar 14
  • 15. JAVA SCRIPT KEYWORDS • The following are reserved words in JavaScript. • They cannot be used as JavaScript variables, functions, metho ds, loop labels, or any object names. 11/25/2013 abstract boolean break byte case catch char class const continue debugg er default delete do double Developed By: Saif Ullah Dar else enum export extends false final finally float for function goto if impleme nts import in instance of int interface long native new null package private protecte d public return short static super switch synchroni zed this throw throws transient true try typeof var void volatile while with 15
  • 16. ESCAPE SEQUENCES CHARACTERS  There are multiple escape sequence characters in JavaScript that provides various kind of formatting. 11/25/2013 Developed By: Saif Ullah Dar 16
  • 17. SCOPE OF VARIABLES The scope of a variable is the region of your program in which it is defined. JavaScript variable will have only two scopes. a) Global Variables: A global variable has global scope which means it is defined everywhere in your JavaScript code. b) Local Variables: A local variable will be visible only within a function where it is defined. Function parameters are always local to that function. Within the body of a function, a local variable takes precedence over a global variable with the same name. If you declare a local variable or function parameter with the same name as a global variable, you effectively hide the global variable.
  • 18. EXAMPLE OF DYNAMIC VARIABLES • JavaScript has dynamic types. • This means that the same variable can be used as different types: Example var x; // Now x is undefined var x = 5; // Now x is a Number var x = “Saif Ullah Dar"; // Now x is a String 11/25/2013 Developed By: Saif Ullah Dar 18
  • 19. JAVA SCRIPT STRINGS • A string is a variable which stores a series of characters like “Saif Ullah Dar". • A string can be any text inside quotes. You can use single or double quotes: Example var carname="Volvo XC60"; var carname='Volvo XC60';  You can use quotes inside a string, as long as they don't match the quotes surrounding the string: Example var answer="It's alright"; var answer="He is called ‘Saif'"; var answer='He is called “Mr Dar"'; 11/25/2013 Developed By: Saif Ullah Dar 19
  • 20. JAVASCRIPT NUMBERS • JavaScript has only one type of numbers. • Numbers can be written with, or without decimals: Example var x1=34.00; // Written with decimals var x2=34; // Written without decimals  Extra large or extra small numbers can be written with scientific (exponential) notation: Example var y=123e5; var z=123e-5; 11/25/2013 // 12300000 // 0.00123 Developed By: Saif Ullah Dar 20
  • 21. JAVA SCRIPT BOOLEANS • Booleans can only have two values: true or false. • Booleans are often used in conditional testing. You will learn more about conditional testing in a later chapter of this tutorial. var x=true; var y=false; 11/25/2013 Developed By: Saif Ullah Dar 21
  • 22. <!DOCTYPE html> <html> <body> <script> var firstname; firstname=“Saif"; document.write(firstname); document.write("<br>"); firstname=“Ullah"; document.write(firstname); </script> <p>The script above declares a variable, assigns a value to it, displays the value, changes the value, and displays the value again.</p> <body> </html> 11/25/2013 Developed By: Saif Ullah Dar 22
  • 23. QUIZ:1 Inside which HTML element do we put the JavaScript? (1)<javascript> (2)<js> (3)<script> (4)<scripting> 11/25/2013 Developed By: Saif Ullah Dar 23
  • 24. ANS:1 Inside which HTML element do we put the JavaScript? (1)<javascript> (2)<js> (3)<script> (4)<scripting> 11/25/2013 Developed By: Saif Ullah Dar 24
  • 25. QUIZ:2 What is the correct JavaScript syntax to write "Hello World"? (1)document.write("Hello World"); (2)echo "Hello World"; (3)("Hello World"); (4)response.write("Hello World"); 11/25/2013 Developed By: Saif Ullah Dar 25
  • 26. ANS:2 What is the correct JavaScript syntax to write "Hello World"? (1)document.write("Hello World"); (2)echo "Hello World"; (3)("Hello World"); (4)response.write("Hello World"); 11/25/2013 Developed By: Saif Ullah Dar 26
  • 27. THANK YOU SAIF ULLAH DAR 11/25/2013 Developed By: Saif Ullah Dar 27