Функция Javascript с прототипом в прототипе родительской функции

Это вообще возможно?

function foo() {
    // do stuff
}
foo.prototype = {
    // stuff...
    bar: function() {
        // do some things with this, where this refers to foo
    },
    bar.prototype: {
        // set some definitions for bar to work with.
        // Where does "this" go and what does it refer to?
    }
}

Ответы на вопрос(1)

Ваш ответ на вопрос