Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save mkczarkowski/8542f96959189c3819e5326dfc7188d0 to your computer and use it in GitHub Desktop.

Select an option

Save mkczarkowski/8542f96959189c3819e5326dfc7188d0 to your computer and use it in GitHub Desktop.
function Adder(value) {
this.value = value;
}
Adder.prototype.addToArray = function (arr) {
'use strict';
return arr.map(function (x) {
return x + this.value; // TypeError.
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment