I think * know how to override a method in JavaScript, but how to I call the inherited method, and is this polymorphism actually working, or will I run into problems as per this thread?
i.e. if I have Foobar, a subclass of Foo, and it’s in a collection Foo[ ], if someone calls Foo.doFoo(), will Foobar’s version of doFoo() get called properly?