I have question regarding to the inheritance/prototype in Javascript, so if there's one constructor contains one method "greeting", but there's also another "greeting" method attached to the prototype of this constructor, then which implementation does it use if one object created using this constructor and calling this method? Is the method getting "overriden" or "shadowed"?
