I've recently started learning Ruby as a second programming language, having started with JavaScript a couple of months ago.
I've noticed in tutorials that what people refer to in Ruby as methods, often don't have the parenthesis() following the method like they do in Javascript.
Is it correct that all methods in JavaScript have parenthesis() and anything to the right of a dot without parenthesis is a property, but in Ruby a method can still be a method even without parenthesis?
I hope this question doesn't make me look like a complete idiot, but I don't want to trip myself up in the early stages so to speak.