SlideShare une entreprise Scribd logo
1  sur  27
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

Contenu connexe

Tendances

Introduction to Javascript programming
Introduction to Javascript programmingIntroduction to Javascript programming
Introduction to Javascript programmingFulvio Corno
 
Java Script An Introduction By HWA
Java Script An Introduction By HWAJava Script An Introduction By HWA
Java Script An Introduction By HWAEmma Wood
 
JavaScript Jump Start 20220214
JavaScript Jump Start 20220214JavaScript Jump Start 20220214
JavaScript Jump Start 20220214Haim Michael
 
JavaScript guide 2020 Learn JavaScript
JavaScript guide 2020 Learn JavaScriptJavaScript guide 2020 Learn JavaScript
JavaScript guide 2020 Learn JavaScriptLaurence Svekis ✔
 
JavaScript - Chapter 3 - Introduction
 JavaScript - Chapter 3 - Introduction JavaScript - Chapter 3 - Introduction
JavaScript - Chapter 3 - IntroductionWebStackAcademy
 
Introduction to Javascript By Satyen
Introduction to Javascript By  SatyenIntroduction to Javascript By  Satyen
Introduction to Javascript By SatyenSatyen Pandya
 
Node.js Crash Course (Jump Start)
Node.js Crash Course (Jump Start) Node.js Crash Course (Jump Start)
Node.js Crash Course (Jump Start) Haim Michael
 
Introduction to JavaScript
Introduction to JavaScriptIntroduction to JavaScript
Introduction to JavaScriptMarlon Jamera
 
From User Action to Framework Reaction
From User Action to Framework ReactionFrom User Action to Framework Reaction
From User Action to Framework Reactionjbandi
 
[2015/2016] Require JS and Handlebars JS
[2015/2016] Require JS and Handlebars JS[2015/2016] Require JS and Handlebars JS
[2015/2016] Require JS and Handlebars JSIvano Malavolta
 
Introduction To JavaScript
Introduction To JavaScriptIntroduction To JavaScript
Introduction To JavaScriptReema
 

Tendances (20)

Javascript
JavascriptJavascript
Javascript
 
Introduction to Javascript programming
Introduction to Javascript programmingIntroduction to Javascript programming
Introduction to Javascript programming
 
Java Script An Introduction By HWA
Java Script An Introduction By HWAJava Script An Introduction By HWA
Java Script An Introduction By HWA
 
JavaScript Jump Start 20220214
JavaScript Jump Start 20220214JavaScript Jump Start 20220214
JavaScript Jump Start 20220214
 
Introduction to java_script
Introduction to java_scriptIntroduction to java_script
Introduction to java_script
 
JavaScript guide 2020 Learn JavaScript
JavaScript guide 2020 Learn JavaScriptJavaScript guide 2020 Learn JavaScript
JavaScript guide 2020 Learn JavaScript
 
Javascript
JavascriptJavascript
Javascript
 
Wt unit 6 ppts web services
Wt unit 6 ppts web servicesWt unit 6 ppts web services
Wt unit 6 ppts web services
 
JavaScript - Chapter 3 - Introduction
 JavaScript - Chapter 3 - Introduction JavaScript - Chapter 3 - Introduction
JavaScript - Chapter 3 - Introduction
 
Introduction to Javascript By Satyen
Introduction to Javascript By  SatyenIntroduction to Javascript By  Satyen
Introduction to Javascript By Satyen
 
Node.js Crash Course (Jump Start)
Node.js Crash Course (Jump Start) Node.js Crash Course (Jump Start)
Node.js Crash Course (Jump Start)
 
Introduction to JavaScript
Introduction to JavaScriptIntroduction to JavaScript
Introduction to JavaScript
 
Java script
Java scriptJava script
Java script
 
Wt unit 2 ppts client side technology
Wt unit 2 ppts client side technologyWt unit 2 ppts client side technology
Wt unit 2 ppts client side technology
 
Wt unit 5 client &amp; server side framework
Wt unit 5 client &amp; server side frameworkWt unit 5 client &amp; server side framework
Wt unit 5 client &amp; server side framework
 
From User Action to Framework Reaction
From User Action to Framework ReactionFrom User Action to Framework Reaction
From User Action to Framework Reaction
 
[2015/2016] Require JS and Handlebars JS
[2015/2016] Require JS and Handlebars JS[2015/2016] Require JS and Handlebars JS
[2015/2016] Require JS and Handlebars JS
 
Javascript
JavascriptJavascript
Javascript
 
Introduction To JavaScript
Introduction To JavaScriptIntroduction To JavaScript
Introduction To JavaScript
 
Java script
Java scriptJava script
Java script
 

En vedette

C programming session 09
C programming session 09C programming session 09
C programming session 09Dushmanta Nath
 
C programming session 11
C programming session 11C programming session 11
C programming session 11Dushmanta Nath
 
C programming session 07
C programming session 07C programming session 07
C programming session 07Dushmanta Nath
 
C programming session 03
C programming session 03C programming session 03
C programming session 03Dushmanta Nath
 
C programming session 04
C programming session 04C programming session 04
C programming session 04Dushmanta Nath
 
C programming session 02
C programming session 02C programming session 02
C programming session 02Dushmanta Nath
 
C programming session 05
C programming session 05C programming session 05
C programming session 05Dushmanta Nath
 
C programming session 08
C programming session 08C programming session 08
C programming session 08Dushmanta Nath
 
C programming session 01
C programming session 01C programming session 01
C programming session 01Dushmanta Nath
 
An Overview of HTML, CSS & Java Script
An Overview of HTML, CSS & Java ScriptAn Overview of HTML, CSS & Java Script
An Overview of HTML, CSS & Java ScriptFahim Abdullah
 
C language (Collected By Dushmanta)
C language  (Collected By Dushmanta)C language  (Collected By Dushmanta)
C language (Collected By Dushmanta)Dushmanta Nath
 

En vedette (15)

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

Similaire à Java script session 3

WT Unit-3 PPT.pptx
WT Unit-3 PPT.pptxWT Unit-3 PPT.pptx
WT Unit-3 PPT.pptxTusharTikia
 
Js datatypes
Js datatypesJs datatypes
Js datatypesSireesh K
 
JavaScript
JavaScriptJavaScript
JavaScriptBIT DURG
 
javascript client side scripting la.pptx
javascript client side scripting la.pptxjavascript client side scripting la.pptx
javascript client side scripting la.pptxlekhacce
 
Final Java-script.pptx
Final Java-script.pptxFinal Java-script.pptx
Final Java-script.pptxAlkanthiSomesh
 
JavaScript Comprehensive Overview
JavaScript Comprehensive OverviewJavaScript Comprehensive Overview
JavaScript Comprehensive OverviewMohamed Loey
 
Introduction to JavaScript
Introduction to JavaScriptIntroduction to JavaScript
Introduction to JavaScriptAndres Baravalle
 
JavaScript New Tutorial Class XI and XII.pptx
JavaScript New Tutorial Class XI and XII.pptxJavaScript New Tutorial Class XI and XII.pptx
JavaScript New Tutorial Class XI and XII.pptxrish15r890
 
Java Script
Java ScriptJava Script
Java ScriptSarvan15
 
Java Script
Java ScriptJava Script
Java ScriptSarvan15
 
Introduction to Scala JS
Introduction to Scala JSIntroduction to Scala JS
Introduction to Scala JSKnoldus Inc.
 
JavaScript for ABAP Programmers - 2/7 Data Types
JavaScript for ABAP Programmers - 2/7 Data TypesJavaScript for ABAP Programmers - 2/7 Data Types
JavaScript for ABAP Programmers - 2/7 Data TypesChris Whealy
 

Similaire à Java script session 3 (20)

WT Unit-3 PPT.pptx
WT Unit-3 PPT.pptxWT Unit-3 PPT.pptx
WT Unit-3 PPT.pptx
 
Js datatypes
Js datatypesJs datatypes
Js datatypes
 
Java script basics
Java script basicsJava script basics
Java script basics
 
Lecture7
Lecture7Lecture7
Lecture7
 
JavaScript
JavaScriptJavaScript
JavaScript
 
javascript client side scripting la.pptx
javascript client side scripting la.pptxjavascript client side scripting la.pptx
javascript client side scripting la.pptx
 
Java script
Java scriptJava script
Java script
 
Final Java-script.pptx
Final Java-script.pptxFinal Java-script.pptx
Final Java-script.pptx
 
JavaScript Comprehensive Overview
JavaScript Comprehensive OverviewJavaScript Comprehensive Overview
JavaScript Comprehensive Overview
 
Introduction to JavaScript
Introduction to JavaScriptIntroduction to JavaScript
Introduction to JavaScript
 
Java script
Java scriptJava script
Java script
 
Introduction to java
Introduction to javaIntroduction to java
Introduction to java
 
js.pptx
js.pptxjs.pptx
js.pptx
 
JavaScript New Tutorial Class XI and XII.pptx
JavaScript New Tutorial Class XI and XII.pptxJavaScript New Tutorial Class XI and XII.pptx
JavaScript New Tutorial Class XI and XII.pptx
 
Java Script
Java ScriptJava Script
Java Script
 
Java Script
Java ScriptJava Script
Java Script
 
Introduction to Scala JS
Introduction to Scala JSIntroduction to Scala JS
Introduction to Scala JS
 
WTA-MODULE-4.pptx
WTA-MODULE-4.pptxWTA-MODULE-4.pptx
WTA-MODULE-4.pptx
 
Oop java Concept
Oop java ConceptOop java Concept
Oop java Concept
 
JavaScript for ABAP Programmers - 2/7 Data Types
JavaScript for ABAP Programmers - 2/7 Data TypesJavaScript for ABAP Programmers - 2/7 Data Types
JavaScript for ABAP Programmers - 2/7 Data Types
 

Plus de Saif Ullah Dar

Plus de Saif Ullah Dar (7)

Session no 3
Session no 3Session no 3
Session no 3
 
Session no 1
Session no 1Session no 1
Session no 1
 
Session no 1 html
Session no 1 htmlSession no 1 html
Session no 1 html
 
Session no 3 bzu
Session no 3 bzuSession no 3 bzu
Session no 3 bzu
 
Session no 2 For BZU
Session no 2 For BZUSession no 2 For BZU
Session no 2 For BZU
 
Java script session 4
Java script session 4Java script session 4
Java script session 4
 
Xml Session No 1
Xml Session No 1Xml Session No 1
Xml Session No 1
 

Dernier

Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostZilliz
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteDianaGray10
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Enterprise Knowledge
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Manik S Magar
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxLoriGlavin3
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfRankYa
 

Dernier (20)

DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test Suite
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdf
 

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