

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
JavaScript call() Method with Arguments.
The JavaScript call() function allows us to use the same method from different objects. The parameters are passed separately here.
Following is the code for the JavaScript function call() −
Example
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> <style> body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; } .sample { font-size: 18px; font-weight: 500; } </style> </head> <body> <h1>JavaScript call()</h1> <div class="sample"></div> <button class="Btn">CLICK HERE</button> <h3>Click on the above buttons to check if adult or not</h3> <script> let sampleEle = document.querySelector(".sample"); let obj1 = { name: "Rohan", age: 22 }; function checkAdult(vehicle, country) { if (this.age > 18) { sampleEle.innerHTML = this.name + " you are an adult and can drive " + vehicle + " in " + country; } else sampleEle.innerHTML = this.name + " you are an adult and cannot drive " + vehicle + " in " + country; } document.querySelector(".Btn").addEventListener("click", () => { checkAdult.call(obj1, 'car','INDIA'); }); </script> </body> </html>
Output
The above code will produce the following output −
On clicking the “CLICK HERE” button −
- Related Questions & Answers
- Java Program to pass method call as arguments to another method
- What is a JavaScript call() Method?
- How to use jQuery.slice() method with no arguments?
- How to use typeof with arguments in JavaScript?
- Call a JavaScript class object with variable?
- Call a function with onclick() – JavaScript?
- Named arguments in JavaScript.
- JavaScript Function Call
- How to call jQuery function with JavaScript function?
- Invoking functions with call() and apply() in JavaScript
- Parameters & Arguments in JavaScript.
- How to use Spread Syntax with arguments in JavaScript functions?
- Call a method Asynchronously in C#
- Can you have a method in Java with varying number of arguments?
- What is arguments object in JavaScript?
Advertisements