I have something like
var foo = function(arg){
var something = {
myPropVal: "the code",
myMethodProp: function(bla) {
// do stuff with mypropval here
alert(this) // => DOMWindow
}
}
}
is this possible? can i access the contents of myPropVal from within myMethodProp given the