I am trying to really understand the javascript language. I am learning the differences between functions and methods.
This answer explains that methods are functions attached to objects: Difference between a method and a function
But this article from MDN says that
A value of property can be a function, which is then known as the object's method.
The sentence from MDN implies that JS objects have single methods. Is that correct? In other words: can javascript objects have multiple methods? Or is there a javascript concept roughly akin to "The Object's Method."