1var colours = ['red', 'green', 'blue'];
2document.getElementById('element').addEventListener('click', function() {
3 // this is a reference to the element clicked on
4
5 var that = this;
6
7 colours.forEach(function() {
8 // this is undefined
9 // that is a reference to the element clicked on
10 });
11});
12