Is it possible to simulate abstract base class in JavaScript? What is the most elegant way to do it?
Say, I want to do something like: -
var cat = ne
Javascript can have inheritance, check out the URL below:
http://www.webreference.com/js/column79/
Andrew