"use strict";
var $result = $('#result');
var obj = {
init: function() {
$result.append('<p>this within init: ' + this + '</p>');
return this.lam = function() { $result.append('<p>this within returned lambda in init: ' + this + '</p>'); };
}
};
obj.init()();
<div id="result"></div>