-
Hajipur, Bihar, 844101
Hajipur, Bihar, 844101
JS Basics
JS Variables & Operators
JS Data Types & Conversion
JS Numbers & Math
JS Strings
JS Dates
JS Arrays
JS Control Flow
JS Loops & Iteration
JS Functions
JS Functions
Function Definitions
Function Parameters
Function Invocation
Function Call
Function Apply
Function Bind
Function Closures
JS Arrow Function
JS Objects
JS Objects
JS Object Properties
JS Object Methods
JS Object Display
JS Object Constructors
Object Definitions
Object Get / Set
Object Prototypes
Object Protection
JS Classes & Modules
JS Async Programming
JS Advanced
JS Destructuring
JS Bitwise
JS RegExp
JS Precedence
JS Errors
JS Scope
JS Hoisting
JS Strict Mode
JS this Keyword
JS HTML DOM
DOM Intro
DOM Methods
DOM Document
DOM Elements
DOM HTML
DOM Forms
DOM CSS
DOM Animations
DOM Events
DOM Event Listener
DOM Navigation
DOM Nodes
DOM Collections
DOM Node Lists
JS BOM (Browser Object Model)
JS Window
JS Screen
JS Location
JS History
JS Navigator
JS Popup Alert
JS Timing
JS Cookies
Web Storage API
JS Web APIs
JS AJAX
AJAX Intro
AJAX XMLHttp
AJAX Request
AJAX Response
AJAX XML File
AJAX PHP
AJAX ASP
AJAX Database
AJAX Applications
AJAX Examples
JS JSON
JSON Intro
JSON Syntax
JSON vs XML
JSON Data Types
JSON Parse
JSON Stringify
JSON Objects
JSON Arrays
JSON Server
JSON PHP
JSON HTML
JSON JSONP
JS Canvas
JS Graphics & Charts
JS Basics
JS Variables & Operators
JS Data Types & Conversion
JS Numbers & Math
JS Strings
JS Dates
JS Arrays
JS Control Flow
JS Loops & Iteration
JS Functions
JS Functions
Function Definitions
Function Parameters
Function Invocation
Function Call
Function Apply
Function Bind
Function Closures
JS Arrow Function
JS Objects
JS Objects
JS Object Properties
JS Object Methods
JS Object Display
JS Object Constructors
Object Definitions
Object Get / Set
Object Prototypes
Object Protection
JS Classes & Modules
JS Async Programming
JS Advanced
JS Destructuring
JS Bitwise
JS RegExp
JS Precedence
JS Errors
JS Scope
JS Hoisting
JS Strict Mode
JS this Keyword
JS HTML DOM
DOM Intro
DOM Methods
DOM Document
DOM Elements
DOM HTML
DOM Forms
DOM CSS
DOM Animations
DOM Events
DOM Event Listener
DOM Navigation
DOM Nodes
DOM Collections
DOM Node Lists
JS BOM (Browser Object Model)
JS Window
JS Screen
JS Location
JS History
JS Navigator
JS Popup Alert
JS Timing
JS Cookies
Web Storage API
JS Web APIs
JS AJAX
AJAX Intro
AJAX XMLHttp
AJAX Request
AJAX Response
AJAX XML File
AJAX PHP
AJAX ASP
AJAX Database
AJAX Applications
AJAX Examples
JS JSON
JSON Intro
JSON Syntax
JSON vs XML
JSON Data Types
JSON Parse
JSON Stringify
JSON Objects
JSON Arrays
JSON Server
JSON PHP
JSON HTML
JSON JSONP
JS Canvas
JS Graphics & Charts
apply()
Method – Call a Function with Array ArgumentsThe apply()
method lets you invoke a function with a specified this
context and an array (or array-like object) of arguments.
func.apply(thisArg, [argsArray]);
thisArg
: The value to use as this
inside the function.
argsArray
: An array (or array-like object) of arguments.
function greet(city, country) {
console.log(`Hello ${this.name} from ${city}, ${country}`);
}
const person = { name: "Alice" };
greet.apply(person, ["Delhi", "India"]);
// Output: Hello Alice from Delhi, India
Math.max()
with applyconst numbers = [4, 9, 2, 7];
const max = Math.max.apply(null, numbers);
console.log(max); // Output: 9
call()
vs apply()
Method | Argument Format |
---|---|
call() |
Comma-separated values |
apply() |
Array of arguments |
Q1. Create a function showInfo
that logs this.name
, this.age
. Use apply()
to invoke it with { name: "Ravi", age: 28 }
.
Q2. Write a function sum(a, b)
and call it using apply()
with [4, 6]
as arguments and a dummy this
object.
Q3. Create an object student
with name: "Anu"
and use a standalone printName()
function with apply()
to print her name.
Q4. Use apply()
with Math.min
to find the smallest number in [2, 8, 5, 1, 9]
.
Q5. Create a function introduce(city, country)
and use apply()
to bind it with a person object and pass array arguments.
Q6. Create a function calculateArea(length, width)
and use apply()
to pass [5, 3]
as arguments.
Q7. Define a sayHello
function and use apply()
to call it with different this
values like { name: "Sara" }
, { name: "Tom" }
.
Q8. Write a function showDetails()
that logs this.id
and this.role
. Use apply()
with { id: 101, role: "Admin" }
.
Q9. Create a function multiply(a, b, c)
and call it using apply()
with array [2, 3, 4]
. Print the result.
Q10. Write a function concatStrings(a, b, c)
and use apply()
to pass ["JavaScript", "is", "fun"]
and print "JavaScript is fun".
Q1: What is the primary purpose of apply()?
Q2: Which of the following uses apply() correctly with Math.max?
Q3: What is the second argument of apply() expected to be?
Q4: Which is true about apply() vs call()?
Q5: Which is a correct signature of the apply() method?
Q6: What happens if the second argument to apply() is not an array?
Q7: Which of the following best demonstrates reusing a function for multiple objects using apply()?