Am I correct in saying that object properties are something about the object, like .length, and object methods are something you can do with the object, ie: .slice(). Is this always true? For example, .endsWith() is a method, but it sounds more like a property; you’re checking if the last character of a string matches the character provided as an argument - you’re not doing anything to the actual object.
Sorry for the newb question!