What's the modern and correct way to pass the this context to an anonymous forEach function?
function Chart() {
  this.draw = function(data) {
     data.forEach(function(value) {
       //do something with values
       console.log(this); //question: how to get Chart instead of global scope?
     )};
  });
};
 
     
     
    