Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to call a function as a method by JavaScript

2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly explains "how to call functions as a method of JavaScript". The content of the explanation is simple and clear, and it is easy to learn and understand. Please follow the editor's train of thought to study and learn "how to call functions as a method of JavaScript".

In JavaScript, you can define a function as an object method.

The following example creates an object (myObject) with two properties (firstName and lastName) and a method (fullName):

Example

Var myObject = {

FirstName: "Bill"

LastName: "Gates"

FullName: function () {

Return this.firstName + "" + this.lastName

}

}

MyObject.fullName (); / / will return "Bill Gates"

The fullName method is a function. This function belongs to the object. MyObject is the owner of the function.

Something called this is the object that "owns" this piece of JavaScript code. In this case, the value of this is myObject.

Test it! Modify the fullName method to return the value of this:

Example

Var myObject = {

FirstName: "John"

LastName: "Doe"

FullName: function () {

Return this

}

}

MyObject.fullName (); / / will return [object Object] (owner object)

Calling a function with an object method causes the value of the this to become the object itself.

Call a function through a function constructor

If the function call is preceded by the new keyword, then this is a constructor call.

It looks like you create a new function, but because the JavaScript function is an object, you actually create a new object

Thank you for your reading, the above is the content of "how to call functions as a method of JavaScript". After the study of this article, I believe you have a deeper understanding of how to call functions as a method of JavaScript, and the specific use needs to be verified in practice. Here is, the editor will push for you more related knowledge points of the article, welcome to follow!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report