Remember that this only refers to the element within the callback function. Outside of the callback function, it could refer to something completely different. code example
Example: javascript pass this to callback
makeHTTPRequest('GET', 'http://youramazingapi/money_makers.php').then(function(data){
this.shakeThose.push(data);
}.bind(this));