I have the following code:
var instance;
function Universe() {
    return instance;
};
instance = new Universe();  
How come that instance is not undefined?
I have the following code:
var instance;
function Universe() {
    return instance;
};
instance = new Universe();  
How come that instance is not undefined?
