Utilisez-le à l'intérieur d'un foreach

 arr.forEach(function(obj) {
        this.addObject(new Obj(obj.prop1, obj.prop2));
    }.bind(this));
Dangerous Dogfish