SlideShare a Scribd company logo
Java Script Functions, Classes,
Regular Expressions
Java Script Functions
● A function is a block of JavaScript code that is defined
once but may be executed, or invoked, any number of
times.
● Functions can have optional parameters and optional
return value.
● In JavaScript, functions are objects,
– they can be manipulated by programs,
– set properties
– invoke methods
– assign to variables
– pass them to other functions as parameters
Function invocation
● Function invocations provide arguments, for
the function’s parameter, which are used to
compute a return value that becomes the
value of the function-invocation expression.
● Each function invocation has another value—
the invocation context—that is the value of
the this keyword
Function definition in statement form
● Functions are defined with function
function_name(arguements) { statements;}
● Example: Function to Compute distance between points (x1,y1)
and (x2,y2).
function distance(x1, y1, x2, y2) {
var dx = x2 – x1; var dy = y2 - y1;
return Math.sqrt(dx*dx + dy*dy);
}
●
A recursive function to compute factorial
function factorial(x) {
if (x <= 1) return 1;
return x * factorial(x-1);
}
Functions in expression form
● The function name is optional for functions defined as expressions,
and is suitable for one-time usage. Example:
– This expression defines a function that squares its argument, and the return
value is assigned to a variable
var square = function(x) { return x*x; }
– Function expressions can also be used as arguments to other functions:
data.sort(function(a,b) { return a-b; });
– Function expressions defined and immediately invoked:
var tensquared = (function(x) {return x*x;}(10));
Return Values
● The return statement causes the function to stop
executing and to return the value of its expression
(if any) to the caller.
● If the return statement does not have an associated
expression, it returns the undefined value.
● If a function does not contain a return statement, it
simply executes each statement in the function body
and returns the undefined value to the caller.
Functions as Methods /
Constructors
● If a function is assigned to the property of an
object, it is known as a method of that object.
● When a function is invoked on or through an
object, that object is the invocation context or
this value for the function.
● Functions designed to initialize a newly created
object are called constructors.
Invoking Functions
● JavaScript functions can be invoked in four
ways:
– as functions,
– as methods,
– as constructors, and
– indirectly through their call() and apply() methods.
Function Invocation
● Functions are invoked as functions or as
methods with an invocation expression
● An invocation expression consists of a
function expression that evaluates to a
function object '(' comma-separated list of zero
or more argument expressions ')'
● If the function is the property of an object or an
element of an array—then it is a method
invocation expression.
Function Invocation
● var total = distance(0,0,2,1) +
distance(2,1,3,5);
● var probability = factorial(5)/factorial(13);
Method Invocation
● A method is a JavaScript function that is stored in a property of an
object.
● A function f to act as a method m of an object o:
o.m = f;
– invoke it using:
o.m();
– Or with arguements
o.m(x, y);
● Method invocations differ from function invocations in the invocation
context
– Obejct o is the invocation context, which will be returned when using 'this'
keyword in the method body
Method Invocation Example
var calculator = {
operand1: 1,
operand2: 1,
add: function() {
// The this keyword refers to this object.
this.result = this.operand1 + this.operand2;
}
};
calculator.add(); // A method invocation to compute 1+1.
calculator.result // => 2
Method Invocation using [ ]
● Property access expressions that use square
brackets cause method invocation.
o["m"](x,y); // Another way to write o.m(x,y).
Constructor Invocation
● If a function or method invocation is preceded
by the keyword new, then it is a constructor
invocation.
● Constructor invocations differ from regular
function and method invocations in their
handling of arguments, invocation context, and
return value.
Constructor Invocation
● We can always omit a pair of empty parentheses in a constructor
invocation. Example both the following invocation works:
– var obj = new Object();
– var obj = new Object;
●
A constructor invocation creates a new, empty object that inherits
from the prototype property of the constructor.
●
Constructor functions are intended to initialize objects and this
newly created object is used as the invocation context, so the
constructor function can refer to it with the this keyword.
Constructor Invocation – Return
Values
● Constructor functions do not normally use the return
keyword, and the new object created is returned
implicitly, which gets stored in constructor invocation
expression (obj)
● Constructor explicitly used the return statement to return
an object, then that object becomes the value of the
invocation expression.
● If the constructor uses return with no value, or if it
returns a primitive value, that return value is ignored and
the new object is used as the value of the invocation.
Indirect Invocation
● Methods - call() and apply(), invoke the function indirectly.
● The first argument to both call() and apply() is the object on which the
function is to be invoked; this argument is the invocation context and
becomes the value of the this keyword within the body of the function.
● To invoke the function f() as a method of the object o (passing no
arguments):
– f.call(o);
– f.apply(o);
● To invoke the function f() and pass 2 arguements (for apply() arguments
are passed in arrays – suitable for variable length arguments)
– f.call(o, 1, 2);
– f.apply(o, [1,2]);
Nesting Functions
● JavaScript function definitions can be nested
within other functions, and they have access to
any variables that are in scope where they are
defined, not the variable scope that is in effect
when they are invoked.
● This combination of a function object and the
scope (a set of variable bindings) in which it
was defined is known as a closure
Nesting Functions
● Example, the inner function square() can read
and write the parameters a and b defined by the
outer function hypotenuse()
function hypotenuse(a, b) {
function square(x) { return x*x; }
return Math.sqrt(square(a) + square(b));
}
Closure Example
var scope = "global scope"; // A global variable
function checkscope() {
var scope = "local scope"; // A local variable
function f() { return scope; }
return f();
}
checkscope() // => "local scope"
Closure Example
var scope = "global scope"; // A global variable
function checkscope() {
var scope = "local scope"; // A local variable
function f() { return scope; }
return f;
}
checkscope()() // return value?
Closure Example
● checkscope()() returns “local scope
● The nested function f() was defined under a
scope chain in which the variable scope was
bound to the value “local scope.”
● That binding is still in effect when f is executed,
wherever it is executed from.
Function Object Properties,
Methods, Constructors
● Function as an Object
– The typeof operator returns the string “function” when
applied to a function
– call() and apply() are some methods of function objects
– bind() - to bind a function to an object.
– toString() - return the complete source code for the function,
built in functions return
– length Property – arity of function, no of parameters defined
for the function return like “[native code]” as the function body
– prototype property - refers to the prototype object of the
function
Function Object Properties,
Methods, Constructors
– arguments.length - specifies the number of
arguments that were passed to the function, when
accessed within the function body
– Function() constructor can also be used to
create new function objects.
var f = new Function("x", "y", "return x*y;");
● Equivalent to
var f = function(x, y) { return x*y; }
Classes
● Class of objects share certain properties.
● Members, or instances, of the class have their own
properties to hold or define their state, but they also have
properties (typically methods) that define their behavior,
which is defined by the class and is shared by all
instances.
● In JavaScript, classes are based on JavaScript’s
prototype-based inheritance mechanism.
● If two objects inherit properties from the same prototype
object, then we say that they are instances of the same
class.
Classes, Prototypes and
Constructors
● A class is a set of objects that inherit properties from the same prototype
object.
● The prototype object,is the central feature of a class.
● Constructor invocations using new automatically create the new object, and
constructor method needs to initialize the state of that new object.
● The critical feature of constructor invocations is that the prototype property
of the constructor function is used as the prototype of the new object.
● This means that all objects created with the same constructor inherit
from the same object and are therefore members of the same class.
Class Example
● // range2.js: Another class representing a range of values.
● // This is a constructor function that initializes new Range objects. Note
that it does not create or return the object. It just initializes this.
function Range(from, to) {
// Store the start and end points (state) of this new range object.
These are noninherited properties that are unique to this object.
this.from = from;
this.to = to;
}
Class Example
●
// All Range objects inherit from this object. Note that the property name must be "prototype".
Range.prototype = { // Return true if x is in the range, false otherwise
includes: function(x) { return this.from <= x && x <= this.to; },
// Invoke f once for each integer in the range.
foreach: function(f) {
for(var x=Math.ceil(this.from); x <= this.to; x++)
f(x);
},
// Return a string representation of the range
toString: function() {
return "(" + this.from + "..." + this.to + ")";
}
};
Class Example
● //Example uses of a range object
var r = new Range(1,3); // Create a range
object
● r.includes(2); // => true: 2 is in the range
instanceOf Operator
● instanceof operator is used when testing
objects for membership in a class
● // true if r inherits from Range.prototype
● r instanceof Range
Regular Expressions
● A regular expression is an object that
describes a pattern of characters.
● The JavaScript RegExp class represents
regular expressions.
Describing Patterns with Regular
Expressions
● RegExp objects may be created with the
RegExp() constructor using a special literal
syntax (regular expression literals are specified
as characters within a pair of slash (/)
characters.)
● Example to create a pattern to match a string
ending with s -
var pattern = new RegExp("s$");
Character Classes
● Individual literal characters can be combined
into character classes by placing them
within square brackets.
● A character class matches any one character
that is contained within it. Eg: the regular
expression /[abc]/ matches any one of the
letters a, b, or c
Regular Expression Character
Classes
Repetition
Examples
● /d{2,4}/ - Between two and four digits
● /w{3}d?/ - Three word characters + optional
digit
● /s+javas+/ - "java" with spaces before and
after
● /[^(]*/ - zero or more chars that are not '('
Refer JavaScript Pocket Reference
● Apart from these topics please study :
– Other Regular Expression techniques for pattern
matching
– Accessing the DOM elements through various
methods .Eg:
● document.getElementById("id1");,
● document.getElementsByName("color");
● document.getElementsByTagName("span");
● document.getElementsByClassName("warning");
– Events, Cookies, Networking, Client Side Storage

More Related Content

What's hot (20)

PPT
Scala functions
Knoldus Inc.
 
PDF
Constructors destructors
Pranali Chaudhari
 
PPTX
Operator overloadng
preethalal
 
PPT
Operator Overloading
Nilesh Dalvi
 
PPT
14 operator overloading
Docent Education
 
DOC
Unit 8
rohassanie
 
PPTX
Operator overloading
Kumar
 
PPTX
Inline function
Tech_MX
 
PPT
Operator overloading
Northeastern University
 
PPTX
Operator overloading
Ramish Suleman
 
PDF
Introduction to C++
Pranali Chaudhari
 
PDF
Operator overloading
Kamal Acharya
 
PDF
Operator overloading in C++
Ilio Catallo
 
PPTX
Function overloading
Selvin Josy Bai Somu
 
PDF
Constructors and Destructors
Dr Sukhpal Singh Gill
 
PPTX
OPERATOR OVERLOADING IN C++
Aabha Tiwari
 
PPTX
Advance topics of C language
Mehwish Mehmood
 
PPTX
Operator overloading and type conversion in cpp
rajshreemuthiah
 
PPTX
Presentation on overloading
Charndeep Sekhon
 
PPT
Operator overloading
piyush Kumar Sharma
 
Scala functions
Knoldus Inc.
 
Constructors destructors
Pranali Chaudhari
 
Operator overloadng
preethalal
 
Operator Overloading
Nilesh Dalvi
 
14 operator overloading
Docent Education
 
Unit 8
rohassanie
 
Operator overloading
Kumar
 
Inline function
Tech_MX
 
Operator overloading
Northeastern University
 
Operator overloading
Ramish Suleman
 
Introduction to C++
Pranali Chaudhari
 
Operator overloading
Kamal Acharya
 
Operator overloading in C++
Ilio Catallo
 
Function overloading
Selvin Josy Bai Somu
 
Constructors and Destructors
Dr Sukhpal Singh Gill
 
OPERATOR OVERLOADING IN C++
Aabha Tiwari
 
Advance topics of C language
Mehwish Mehmood
 
Operator overloading and type conversion in cpp
rajshreemuthiah
 
Presentation on overloading
Charndeep Sekhon
 
Operator overloading
piyush Kumar Sharma
 

Viewers also liked (20)

PDF
TM 2nd qtr-3ndmeeting(java script-functions)
Esmeraldo Jr Guimbarda
 
PPTX
Lambda functions in java 8
James Brown
 
PDF
2java Oop
Adil Jafri
 
PDF
Functional Programming in Java 8 - Exploiting Lambdas
Ganesh Samarthyam
 
PPTX
Functional Programming in Java
Narendran Solai Sridharan
 
PDF
2ndQuarter2ndMeeting(formatting number)
Esmeraldo Jr Guimbarda
 
PPTX
Week 5 java script functions
brianjihoonlee
 
PDF
Java Script - Object-Oriented Programming
intive
 
PPTX
02 java programming basic
Zeeshan-Shaikh
 
PDF
Understanding Java 8 Lambdas and Streams - Part 1 - Lambda Calculus, Lambda...
Philip Schwarz
 
PDF
Fp java8
Yanai Franchi
 
PPT
JavaScript Functions
Reem Alattas
 
PDF
Functional programming with Java 8
Talha Ocakçı
 
PDF
Functional Javascript
guest4d57e6
 
PDF
JavaScript Functions
Colin DeCarlo
 
PPT
Programming
Sean Chia
 
PDF
Functional programming in java
John Ferguson Smart Limited
 
PDF
Basic java for Android Developer
Nattapong Tonprasert
 
PPT
Functional Programming In Java
Andrei Solntsev
 
TM 2nd qtr-3ndmeeting(java script-functions)
Esmeraldo Jr Guimbarda
 
Lambda functions in java 8
James Brown
 
2java Oop
Adil Jafri
 
Functional Programming in Java 8 - Exploiting Lambdas
Ganesh Samarthyam
 
Functional Programming in Java
Narendran Solai Sridharan
 
2ndQuarter2ndMeeting(formatting number)
Esmeraldo Jr Guimbarda
 
Week 5 java script functions
brianjihoonlee
 
Java Script - Object-Oriented Programming
intive
 
02 java programming basic
Zeeshan-Shaikh
 
Understanding Java 8 Lambdas and Streams - Part 1 - Lambda Calculus, Lambda...
Philip Schwarz
 
Fp java8
Yanai Franchi
 
JavaScript Functions
Reem Alattas
 
Functional programming with Java 8
Talha Ocakçı
 
Functional Javascript
guest4d57e6
 
JavaScript Functions
Colin DeCarlo
 
Programming
Sean Chia
 
Functional programming in java
John Ferguson Smart Limited
 
Basic java for Android Developer
Nattapong Tonprasert
 
Functional Programming In Java
Andrei Solntsev
 
Ad

Similar to java script functions, classes (20)

PPTX
Object oriented java script
vivek p s
 
PPT
JavaScript - Programming Languages course
yoavrubin
 
PPTX
Awesomeness of JavaScript…almost
Quinton Sheppard
 
PDF
The mighty js_function
timotheeg
 
PPTX
Javascript functions
Alaref Abushaala
 
PDF
JavaScript Primer
Daniel Cousineau
 
PPT
Basic Javascript
Bunlong Van
 
PPTX
Javascript Objects Deep Dive
Manish Jangir
 
PPT
Advanced JavaScript
Fu Cheng
 
PDF
Js in-ten-minutes
Phong Vân
 
PPT
25-functions.ppt
JyothiAmpally
 
PPT
Java Script Patterns
Allan Huang
 
PDF
Rediscovering JavaScript: The Language Behind The Libraries
Simon Willison
 
PPTX
LinkedIn TBC JavaScript 100: Functions
Adam Crabtree
 
KEY
Javascript tid-bits
David Atchley
 
PPTX
Lecture 4- Javascript Function presentation
GomathiUdai
 
PDF
All you need to know about JavaScript Functions
Oluwaleke Fakorede
 
PPTX
Advanced JavaScript
Nascenia IT
 
PPT
Object Oriented JavaScript
Donald Sipe
 
Object oriented java script
vivek p s
 
JavaScript - Programming Languages course
yoavrubin
 
Awesomeness of JavaScript…almost
Quinton Sheppard
 
The mighty js_function
timotheeg
 
Javascript functions
Alaref Abushaala
 
JavaScript Primer
Daniel Cousineau
 
Basic Javascript
Bunlong Van
 
Javascript Objects Deep Dive
Manish Jangir
 
Advanced JavaScript
Fu Cheng
 
Js in-ten-minutes
Phong Vân
 
25-functions.ppt
JyothiAmpally
 
Java Script Patterns
Allan Huang
 
Rediscovering JavaScript: The Language Behind The Libraries
Simon Willison
 
LinkedIn TBC JavaScript 100: Functions
Adam Crabtree
 
Javascript tid-bits
David Atchley
 
Lecture 4- Javascript Function presentation
GomathiUdai
 
All you need to know about JavaScript Functions
Oluwaleke Fakorede
 
Advanced JavaScript
Nascenia IT
 
Object Oriented JavaScript
Donald Sipe
 
Ad

Recently uploaded (20)

PDF
Bitcoin for Millennials podcast with Bram, Power Laws of Bitcoin
Stephen Perrenod
 
PDF
Newgen 2022-Forrester Newgen TEI_13 05 2022-The-Total-Economic-Impact-Newgen-...
darshakparmar
 
PDF
The Rise of AI and IoT in Mobile App Tech.pdf
IMG Global Infotech
 
DOCX
Python coding for beginners !! Start now!#
Rajni Bhardwaj Grover
 
PDF
UPDF - AI PDF Editor & Converter Key Features
DealFuel
 
PDF
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
PPTX
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
PDF
What’s my job again? Slides from Mark Simos talk at 2025 Tampa BSides
Mark Simos
 
PPTX
Future Tech Innovations 2025 – A TechLists Insight
TechLists
 
PDF
The 2025 InfraRed Report - Redpoint Ventures
Razin Mustafiz
 
PDF
Peak of Data & AI Encore AI-Enhanced Workflows for the Real World
Safe Software
 
PDF
Mastering Financial Management in Direct Selling
Epixel MLM Software
 
DOCX
Cryptography Quiz: test your knowledge of this important security concept.
Rajni Bhardwaj Grover
 
PPTX
MuleSoft MCP Support (Model Context Protocol) and Use Case Demo
shyamraj55
 
PPTX
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
PDF
“Voice Interfaces on a Budget: Building Real-time Speech Recognition on Low-c...
Edge AI and Vision Alliance
 
PPTX
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
PPTX
AI Penetration Testing Essentials: A Cybersecurity Guide for 2025
defencerabbit Team
 
PDF
Automating Feature Enrichment and Station Creation in Natural Gas Utility Net...
Safe Software
 
PDF
NLJUG Speaker academy 2025 - first session
Bert Jan Schrijver
 
Bitcoin for Millennials podcast with Bram, Power Laws of Bitcoin
Stephen Perrenod
 
Newgen 2022-Forrester Newgen TEI_13 05 2022-The-Total-Economic-Impact-Newgen-...
darshakparmar
 
The Rise of AI and IoT in Mobile App Tech.pdf
IMG Global Infotech
 
Python coding for beginners !! Start now!#
Rajni Bhardwaj Grover
 
UPDF - AI PDF Editor & Converter Key Features
DealFuel
 
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
What’s my job again? Slides from Mark Simos talk at 2025 Tampa BSides
Mark Simos
 
Future Tech Innovations 2025 – A TechLists Insight
TechLists
 
The 2025 InfraRed Report - Redpoint Ventures
Razin Mustafiz
 
Peak of Data & AI Encore AI-Enhanced Workflows for the Real World
Safe Software
 
Mastering Financial Management in Direct Selling
Epixel MLM Software
 
Cryptography Quiz: test your knowledge of this important security concept.
Rajni Bhardwaj Grover
 
MuleSoft MCP Support (Model Context Protocol) and Use Case Demo
shyamraj55
 
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
“Voice Interfaces on a Budget: Building Real-time Speech Recognition on Low-c...
Edge AI and Vision Alliance
 
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
AI Penetration Testing Essentials: A Cybersecurity Guide for 2025
defencerabbit Team
 
Automating Feature Enrichment and Station Creation in Natural Gas Utility Net...
Safe Software
 
NLJUG Speaker academy 2025 - first session
Bert Jan Schrijver
 

java script functions, classes

  • 1. Java Script Functions, Classes, Regular Expressions
  • 2. Java Script Functions ● A function is a block of JavaScript code that is defined once but may be executed, or invoked, any number of times. ● Functions can have optional parameters and optional return value. ● In JavaScript, functions are objects, – they can be manipulated by programs, – set properties – invoke methods – assign to variables – pass them to other functions as parameters
  • 3. Function invocation ● Function invocations provide arguments, for the function’s parameter, which are used to compute a return value that becomes the value of the function-invocation expression. ● Each function invocation has another value— the invocation context—that is the value of the this keyword
  • 4. Function definition in statement form ● Functions are defined with function function_name(arguements) { statements;} ● Example: Function to Compute distance between points (x1,y1) and (x2,y2). function distance(x1, y1, x2, y2) { var dx = x2 – x1; var dy = y2 - y1; return Math.sqrt(dx*dx + dy*dy); } ● A recursive function to compute factorial function factorial(x) { if (x <= 1) return 1; return x * factorial(x-1); }
  • 5. Functions in expression form ● The function name is optional for functions defined as expressions, and is suitable for one-time usage. Example: – This expression defines a function that squares its argument, and the return value is assigned to a variable var square = function(x) { return x*x; } – Function expressions can also be used as arguments to other functions: data.sort(function(a,b) { return a-b; }); – Function expressions defined and immediately invoked: var tensquared = (function(x) {return x*x;}(10));
  • 6. Return Values ● The return statement causes the function to stop executing and to return the value of its expression (if any) to the caller. ● If the return statement does not have an associated expression, it returns the undefined value. ● If a function does not contain a return statement, it simply executes each statement in the function body and returns the undefined value to the caller.
  • 7. Functions as Methods / Constructors ● If a function is assigned to the property of an object, it is known as a method of that object. ● When a function is invoked on or through an object, that object is the invocation context or this value for the function. ● Functions designed to initialize a newly created object are called constructors.
  • 8. Invoking Functions ● JavaScript functions can be invoked in four ways: – as functions, – as methods, – as constructors, and – indirectly through their call() and apply() methods.
  • 9. Function Invocation ● Functions are invoked as functions or as methods with an invocation expression ● An invocation expression consists of a function expression that evaluates to a function object '(' comma-separated list of zero or more argument expressions ')' ● If the function is the property of an object or an element of an array—then it is a method invocation expression.
  • 10. Function Invocation ● var total = distance(0,0,2,1) + distance(2,1,3,5); ● var probability = factorial(5)/factorial(13);
  • 11. Method Invocation ● A method is a JavaScript function that is stored in a property of an object. ● A function f to act as a method m of an object o: o.m = f; – invoke it using: o.m(); – Or with arguements o.m(x, y); ● Method invocations differ from function invocations in the invocation context – Obejct o is the invocation context, which will be returned when using 'this' keyword in the method body
  • 12. Method Invocation Example var calculator = { operand1: 1, operand2: 1, add: function() { // The this keyword refers to this object. this.result = this.operand1 + this.operand2; } }; calculator.add(); // A method invocation to compute 1+1. calculator.result // => 2
  • 13. Method Invocation using [ ] ● Property access expressions that use square brackets cause method invocation. o["m"](x,y); // Another way to write o.m(x,y).
  • 14. Constructor Invocation ● If a function or method invocation is preceded by the keyword new, then it is a constructor invocation. ● Constructor invocations differ from regular function and method invocations in their handling of arguments, invocation context, and return value.
  • 15. Constructor Invocation ● We can always omit a pair of empty parentheses in a constructor invocation. Example both the following invocation works: – var obj = new Object(); – var obj = new Object; ● A constructor invocation creates a new, empty object that inherits from the prototype property of the constructor. ● Constructor functions are intended to initialize objects and this newly created object is used as the invocation context, so the constructor function can refer to it with the this keyword.
  • 16. Constructor Invocation – Return Values ● Constructor functions do not normally use the return keyword, and the new object created is returned implicitly, which gets stored in constructor invocation expression (obj) ● Constructor explicitly used the return statement to return an object, then that object becomes the value of the invocation expression. ● If the constructor uses return with no value, or if it returns a primitive value, that return value is ignored and the new object is used as the value of the invocation.
  • 17. Indirect Invocation ● Methods - call() and apply(), invoke the function indirectly. ● The first argument to both call() and apply() is the object on which the function is to be invoked; this argument is the invocation context and becomes the value of the this keyword within the body of the function. ● To invoke the function f() as a method of the object o (passing no arguments): – f.call(o); – f.apply(o); ● To invoke the function f() and pass 2 arguements (for apply() arguments are passed in arrays – suitable for variable length arguments) – f.call(o, 1, 2); – f.apply(o, [1,2]);
  • 18. Nesting Functions ● JavaScript function definitions can be nested within other functions, and they have access to any variables that are in scope where they are defined, not the variable scope that is in effect when they are invoked. ● This combination of a function object and the scope (a set of variable bindings) in which it was defined is known as a closure
  • 19. Nesting Functions ● Example, the inner function square() can read and write the parameters a and b defined by the outer function hypotenuse() function hypotenuse(a, b) { function square(x) { return x*x; } return Math.sqrt(square(a) + square(b)); }
  • 20. Closure Example var scope = "global scope"; // A global variable function checkscope() { var scope = "local scope"; // A local variable function f() { return scope; } return f(); } checkscope() // => "local scope"
  • 21. Closure Example var scope = "global scope"; // A global variable function checkscope() { var scope = "local scope"; // A local variable function f() { return scope; } return f; } checkscope()() // return value?
  • 22. Closure Example ● checkscope()() returns “local scope ● The nested function f() was defined under a scope chain in which the variable scope was bound to the value “local scope.” ● That binding is still in effect when f is executed, wherever it is executed from.
  • 23. Function Object Properties, Methods, Constructors ● Function as an Object – The typeof operator returns the string “function” when applied to a function – call() and apply() are some methods of function objects – bind() - to bind a function to an object. – toString() - return the complete source code for the function, built in functions return – length Property – arity of function, no of parameters defined for the function return like “[native code]” as the function body – prototype property - refers to the prototype object of the function
  • 24. Function Object Properties, Methods, Constructors – arguments.length - specifies the number of arguments that were passed to the function, when accessed within the function body – Function() constructor can also be used to create new function objects. var f = new Function("x", "y", "return x*y;"); ● Equivalent to var f = function(x, y) { return x*y; }
  • 25. Classes ● Class of objects share certain properties. ● Members, or instances, of the class have their own properties to hold or define their state, but they also have properties (typically methods) that define their behavior, which is defined by the class and is shared by all instances. ● In JavaScript, classes are based on JavaScript’s prototype-based inheritance mechanism. ● If two objects inherit properties from the same prototype object, then we say that they are instances of the same class.
  • 26. Classes, Prototypes and Constructors ● A class is a set of objects that inherit properties from the same prototype object. ● The prototype object,is the central feature of a class. ● Constructor invocations using new automatically create the new object, and constructor method needs to initialize the state of that new object. ● The critical feature of constructor invocations is that the prototype property of the constructor function is used as the prototype of the new object. ● This means that all objects created with the same constructor inherit from the same object and are therefore members of the same class.
  • 27. Class Example ● // range2.js: Another class representing a range of values. ● // This is a constructor function that initializes new Range objects. Note that it does not create or return the object. It just initializes this. function Range(from, to) { // Store the start and end points (state) of this new range object. These are noninherited properties that are unique to this object. this.from = from; this.to = to; }
  • 28. Class Example ● // All Range objects inherit from this object. Note that the property name must be "prototype". Range.prototype = { // Return true if x is in the range, false otherwise includes: function(x) { return this.from <= x && x <= this.to; }, // Invoke f once for each integer in the range. foreach: function(f) { for(var x=Math.ceil(this.from); x <= this.to; x++) f(x); }, // Return a string representation of the range toString: function() { return "(" + this.from + "..." + this.to + ")"; } };
  • 29. Class Example ● //Example uses of a range object var r = new Range(1,3); // Create a range object ● r.includes(2); // => true: 2 is in the range
  • 30. instanceOf Operator ● instanceof operator is used when testing objects for membership in a class ● // true if r inherits from Range.prototype ● r instanceof Range
  • 31. Regular Expressions ● A regular expression is an object that describes a pattern of characters. ● The JavaScript RegExp class represents regular expressions.
  • 32. Describing Patterns with Regular Expressions ● RegExp objects may be created with the RegExp() constructor using a special literal syntax (regular expression literals are specified as characters within a pair of slash (/) characters.) ● Example to create a pattern to match a string ending with s - var pattern = new RegExp("s$");
  • 33. Character Classes ● Individual literal characters can be combined into character classes by placing them within square brackets. ● A character class matches any one character that is contained within it. Eg: the regular expression /[abc]/ matches any one of the letters a, b, or c
  • 36. Examples ● /d{2,4}/ - Between two and four digits ● /w{3}d?/ - Three word characters + optional digit ● /s+javas+/ - "java" with spaces before and after ● /[^(]*/ - zero or more chars that are not '('
  • 37. Refer JavaScript Pocket Reference ● Apart from these topics please study : – Other Regular Expression techniques for pattern matching – Accessing the DOM elements through various methods .Eg: ● document.getElementById("id1");, ● document.getElementsByName("color"); ● document.getElementsByTagName("span"); ● document.getElementsByClassName("warning"); – Events, Cookies, Networking, Client Side Storage