Naming suggestions for a function returning parent prototype
- by hevalbaranov
I'm having a naming trouble with a function which returns parent prototype of specified object. It's being used like this:
# Pseudo Code
MyClass
{
super(MyClass,this).constructor.call(....
The problem is that I want to use a word which is as superior as "super", but "super" is reserved even it's undefined. Now I'm using "parent", but the window object has a property named parent. I hate Javascript.
What should I name this function? Names have to start with lowercase and have to be short.