What is the Difference Between a Function and a Method in JavaScript?

tifflabs

tiff

Posted on February 5, 2019

What is the Difference Between a Function and a Method in JavaScript?

This article was originally posted on my blog.

Abby Snopek tweeted the following:

In short: a method is a function that belongs to a class. In JavaScript, however, a method is a function that belongs to an object.

Everything in JavaScript is an object; a function is an object; an Array is an object. This is a quirky design decision, but because most everything in JavaScript is an object, we can do neat things with Prototypal Inheritance. The nice thing about prototypal inheritance is that we can manipulate several different properties on the prototype chain at once.

Give that above article a read for more information. Also, check out the Inheritance and the prototype chain article on MDN.

Update: I wrote this post without coffee and realized I should show some examples. Will rectify this after my java ☕.


Sign Up for the Newsletter. No spam. I hate that, too.

https://buttondown.email/tiffanywhite

💖 💪 🙅 🚩
tifflabs
tiff

Posted on February 5, 2019

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related