codice:
var	andr3a = {
	parametro:"Andrea",
	metodo:function(){
		alert(this.parametro)
	},
	classe:function(){
		this.test = function(){
			return this instanceof andr3a.classe
		}
	}
};

alert((new andr3a.classe).test());	// true