---
title: Method
slug: Glossary/Method
translation_of: Glossary/Method
---
一个方法就是一个函数,是对象的属性之一。有两种类型的方法:实例方法是由对象实例执行的内置任务,另一种是静态方法,在对象构造函数内直接调用的任务。
注意: 在 JavaScript 中,函数本身也是对象,因此,在这种情况下,一个方法实际上就是指向一个函数的对象引用。
Learn more
Learn about it
- {{InterWiki("wikipedia","Method (computer programming)")}} in Wikipedia
- Defining a method in JavaScript (comparison of the traditional syntax and the new shorthand)
Technical reference