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

More Related Content

PPTX
Java script Session No 1
PPT
JAVA SCRIPT
DOC
Java script by Act Academy
PPTX
JavaScript Performance (at SFJS)
DOCX
Javascript tutorial
PPT
Javascript by geetanjali
PPTX
Java script
PDF
JavaScript Roadmap III - ECMAScript
Java script Session No 1
JAVA SCRIPT
Java script by Act Academy
JavaScript Performance (at SFJS)
Javascript tutorial
Javascript by geetanjali
Java script
JavaScript Roadmap III - ECMAScript

What's hot (20)

PDF
PDF
Introduction to Javascript programming
PPTX
Java Script An Introduction By HWA
PDF
JavaScript Jump Start 20220214
PPTX
Introduction to java_script
PDF
JavaScript guide 2020 Learn JavaScript
PPTX
Javascript
PDF
JavaScript - Chapter 3 - Introduction
PPTX
Introduction to Javascript By Satyen
PDF
Node.js Crash Course (Jump Start)
PPTX
Introduction to JavaScript
PPTX
Java script
PDF
Wt unit 2 ppts client side technology
PDF
Wt unit 5 client &amp; server side framework
PDF
From User Action to Framework Reaction
PDF
[2015/2016] Require JS and Handlebars JS
PPT
Javascript
PPTX
Introduction To JavaScript
PPTX
Java script
Introduction to Javascript programming
Java Script An Introduction By HWA
JavaScript Jump Start 20220214
Introduction to java_script
JavaScript guide 2020 Learn JavaScript
Javascript
JavaScript - Chapter 3 - Introduction
Introduction to Javascript By Satyen
Node.js Crash Course (Jump Start)
Introduction to JavaScript
Java script
Wt unit 2 ppts client side technology
Wt unit 5 client &amp; server side framework
From User Action to Framework Reaction
[2015/2016] Require JS and Handlebars JS
Javascript
Introduction To JavaScript
Java script
Ad

Viewers also liked (15)

PPT
Session No1
PPTX
Session no 4
PPS
C programming session 09
PPS
C programming session 11
PPTX
Session no 2
PPS
C programming session 07
PPS
C programming session 03
PPS
C programming session 04
PPS
C programming session 02
PPS
C programming session 05
PPS
C programming session 08
PPS
C programming session 01
PPTX
An Overview of HTML, CSS & Java Script
PPTX
Session 3 Java Script
PPSX
C language (Collected By Dushmanta)
Session No1
Session no 4
C programming session 09
C programming session 11
Session no 2
C programming session 07
C programming session 03
C programming session 04
C programming session 02
C programming session 05
C programming session 08
C programming session 01
An Overview of HTML, CSS & Java Script
Session 3 Java Script
C language (Collected By Dushmanta)
Ad

Similar to Java script session 3 (20)

PPTX
WT Unit-3 PPT.pptx
PPTX
Js datatypes
PPTX
Java script basics
PPT
JS-Slides-2_74526582652945_73562876535.ppt
PDF
Lecture7
PDF
JavaScript
PPTX
javascript client side scripting la.pptx
PPTX
Java script
PPTX
Final Java-script.pptx
PPSX
JavaScript Comprehensive Overview
PPT
Introduction to JavaScript
PPTX
Java script
PPTX
Powerpoint about JavaScript presentation
PPTX
Introduction to java
PPTX
js.pptx
PPTX
JavaScript New Tutorial Class XI and XII.pptx
PDF
Java Script
PPT
Java Script
PPT
JavaScript ppt for introduction of javascripta
ODP
Introduction to Scala JS
WT Unit-3 PPT.pptx
Js datatypes
Java script basics
JS-Slides-2_74526582652945_73562876535.ppt
Lecture7
JavaScript
javascript client side scripting la.pptx
Java script
Final Java-script.pptx
JavaScript Comprehensive Overview
Introduction to JavaScript
Java script
Powerpoint about JavaScript presentation
Introduction to java
js.pptx
JavaScript New Tutorial Class XI and XII.pptx
Java Script
Java Script
JavaScript ppt for introduction of javascripta
Introduction to Scala JS

More from Saif Ullah Dar (7)

PPTX
Session no 3
PPTX
Session no 1
PPTX
Session no 1 html
PPT
Session no 3 bzu
PPT
Session no 2 For BZU
PPTX
Java script session 4
PPT
Xml Session No 1
Session no 3
Session no 1
Session no 1 html
Session no 3 bzu
Session no 2 For BZU
Java script session 4
Xml Session No 1

Recently uploaded (20)

PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
Empathic Computing: Creating Shared Understanding
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PDF
HCSP-Presales-Campus Network Planning and Design V1.0 Training Material-Witho...
PDF
KodekX | Application Modernization Development
PDF
Modernizing your data center with Dell and AMD
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PDF
Sensors and Actuators in IoT Systems using pdf
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PDF
Review of recent advances in non-invasive hemoglobin estimation
PDF
cuic standard and advanced reporting.pdf
PDF
Advanced Soft Computing BINUS July 2025.pdf
PDF
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
PDF
solutions_manual_-_materials___processing_in_manufacturing__demargo_.pdf
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PDF
Electronic commerce courselecture one. Pdf
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PDF
NewMind AI Monthly Chronicles - July 2025
Per capita expenditure prediction using model stacking based on satellite ima...
“AI and Expert System Decision Support & Business Intelligence Systems”
Empathic Computing: Creating Shared Understanding
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
HCSP-Presales-Campus Network Planning and Design V1.0 Training Material-Witho...
KodekX | Application Modernization Development
Modernizing your data center with Dell and AMD
20250228 LYD VKU AI Blended-Learning.pptx
Sensors and Actuators in IoT Systems using pdf
Chapter 3 Spatial Domain Image Processing.pdf
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Review of recent advances in non-invasive hemoglobin estimation
cuic standard and advanced reporting.pdf
Advanced Soft Computing BINUS July 2025.pdf
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
solutions_manual_-_materials___processing_in_manufacturing__demargo_.pdf
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Electronic commerce courselecture one. Pdf
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
NewMind AI Monthly Chronicles - July 2025

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