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

PDF
Functions in C++
Pranali Chaudhari
 
PPTX
operator overloading & type conversion in cpp over view || c++
gourav kottawar
 
PDF
Operator overloading
Pranali Chaudhari
 
PPT
Operator overloading
ArunaDevi63
 
PPTX
Functions1
DrUjwala1
 
PPT
C++ overloading
sanya6900
 
DOCX
C questions
parm112
 
DOCX
New microsoft office word document (2)
rashmita_mishra
 
Functions in C++
Pranali Chaudhari
 
operator overloading & type conversion in cpp over view || c++
gourav kottawar
 
Operator overloading
Pranali Chaudhari
 
Operator overloading
ArunaDevi63
 
Functions1
DrUjwala1
 
C++ overloading
sanya6900
 
C questions
parm112
 
New microsoft office word document (2)
rashmita_mishra
 

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
 
Ad

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)

PDF
JavaScript - Chapter 6 - Basic Functions
WebStackAcademy
 
PDF
Chapter 1. Functions in C++.pdf
TeshaleSiyum
 
PDF
Chapter_1.__Functions_in_C++[1].pdf
TeshaleSiyum
 
PPTX
Lecture 4- Javascript Function presentation
GomathiUdai
 
PPTX
Object oriented programming in java
Elizabeth alexander
 
PPTX
EContent_11_2023_04_09_11_30_38_Unit_3_Objects_and_Classespptx__2023_03_20_12...
vekariyakashyap
 
PPTX
Javascript: master this
Barak Drechsler
 
PDF
Functional JavaScript Fundamentals
Srdjan Strbanovic
 
PDF
Python_Unit_2.pdf
alaparthi
 
PPTX
Ajaxworld
deannalagason
 
PPTX
FUNCTIONS IN R PROGRAMMING.pptx
SafnaSaff1
 
PPTX
Object oriented java script
vivek p s
 
PPT
Advanced JavaScript
Fu Cheng
 
PDF
Functions2.pdf
prasnt1
 
PPTX
User defined function in C.pptx
Rhishav Poudyal
 
PPTX
Functions
Septi Ratnasari
 
PPTX
Functions
Golda Margret Sheeba J
 
PPTX
use of Functions to write python program.pptx
rahulsinghsikarwar2
 
JavaScript - Chapter 6 - Basic Functions
WebStackAcademy
 
Chapter 1. Functions in C++.pdf
TeshaleSiyum
 
Chapter_1.__Functions_in_C++[1].pdf
TeshaleSiyum
 
Lecture 4- Javascript Function presentation
GomathiUdai
 
Object oriented programming in java
Elizabeth alexander
 
EContent_11_2023_04_09_11_30_38_Unit_3_Objects_and_Classespptx__2023_03_20_12...
vekariyakashyap
 
Javascript: master this
Barak Drechsler
 
Functional JavaScript Fundamentals
Srdjan Strbanovic
 
Python_Unit_2.pdf
alaparthi
 
Ajaxworld
deannalagason
 
FUNCTIONS IN R PROGRAMMING.pptx
SafnaSaff1
 
Object oriented java script
vivek p s
 
Advanced JavaScript
Fu Cheng
 
Functions2.pdf
prasnt1
 
User defined function in C.pptx
Rhishav Poudyal
 
Functions
Septi Ratnasari
 
use of Functions to write python program.pptx
rahulsinghsikarwar2
 

Recently uploaded (20)

DOCX
Top AI API Alternatives to OpenAI: A Side-by-Side Breakdown
vilush
 
PDF
Software Development Methodologies in 2025
KodekX
 
PDF
Automating ArcGIS Content Discovery with FME: A Real World Use Case
Safe Software
 
PPTX
C Programming Basics concept krnppt.pptx
Karan Prajapat
 
PDF
Advances in Ultra High Voltage (UHV) Transmission and Distribution Systems.pdf
Nabajyoti Banik
 
PDF
CIFDAQ's Teaching Thursday: Moving Averages Made Simple
CIFDAQ
 
PDF
Orbitly Pitch Deck|A Mission-Driven Platform for Side Project Collaboration (...
zz41354899
 
PDF
Chapter 2 Digital Image Fundamentals.pdf
Getnet Tigabie Askale -(GM)
 
PDF
Doc9.....................................
SofiaCollazos
 
PDF
Why Your AI & Cybersecurity Hiring Still Misses the Mark in 2025
Virtual Employee Pvt. Ltd.
 
PDF
A Day in the Life of Location Data - Turning Where into How.pdf
Precisely
 
PDF
Software Development Company | KodekX
KodekX
 
PDF
Security features in Dell, HP, and Lenovo PC systems: A research-based compar...
Principled Technologies
 
PDF
This slide provides an overview Technology
mineshkharadi333
 
PDF
GYTPOL If You Give a Hacker a Host
linda296484
 
PDF
Cloud-Migration-Best-Practices-A-Practical-Guide-to-AWS-Azure-and-Google-Clou...
Artjoker Software Development Company
 
PDF
BLW VOCATIONAL TRAINING SUMMER INTERNSHIP REPORT
codernjn73
 
PDF
madgavkar20181017ppt McKinsey Presentation.pdf
georgschmitzdoerner
 
PPT
L2 Rules of Netiquette in Empowerment technology
Archibal2
 
PPTX
AI and Robotics for Human Well-being.pptx
JAYMIN SUTHAR
 
Top AI API Alternatives to OpenAI: A Side-by-Side Breakdown
vilush
 
Software Development Methodologies in 2025
KodekX
 
Automating ArcGIS Content Discovery with FME: A Real World Use Case
Safe Software
 
C Programming Basics concept krnppt.pptx
Karan Prajapat
 
Advances in Ultra High Voltage (UHV) Transmission and Distribution Systems.pdf
Nabajyoti Banik
 
CIFDAQ's Teaching Thursday: Moving Averages Made Simple
CIFDAQ
 
Orbitly Pitch Deck|A Mission-Driven Platform for Side Project Collaboration (...
zz41354899
 
Chapter 2 Digital Image Fundamentals.pdf
Getnet Tigabie Askale -(GM)
 
Doc9.....................................
SofiaCollazos
 
Why Your AI & Cybersecurity Hiring Still Misses the Mark in 2025
Virtual Employee Pvt. Ltd.
 
A Day in the Life of Location Data - Turning Where into How.pdf
Precisely
 
Software Development Company | KodekX
KodekX
 
Security features in Dell, HP, and Lenovo PC systems: A research-based compar...
Principled Technologies
 
This slide provides an overview Technology
mineshkharadi333
 
GYTPOL If You Give a Hacker a Host
linda296484
 
Cloud-Migration-Best-Practices-A-Practical-Guide-to-AWS-Azure-and-Google-Clou...
Artjoker Software Development Company
 
BLW VOCATIONAL TRAINING SUMMER INTERNSHIP REPORT
codernjn73
 
madgavkar20181017ppt McKinsey Presentation.pdf
georgschmitzdoerner
 
L2 Rules of Netiquette in Empowerment technology
Archibal2
 
AI and Robotics for Human Well-being.pptx
JAYMIN SUTHAR
 

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