diff --git a/perf/perf.js b/perf/perf.js index 0e4af6f05..644975a42 100644 --- a/perf/perf.js +++ b/perf/perf.js @@ -310,7 +310,7 @@ var thisArg = { "name": "fred" };\ \ var func = function(greeting, punctuation) {\ - return greeting + " " + this.name + (punctuation || ".");\ + return (greeting || "hi") + " " + this.name + (punctuation || ".");\ };\ \ var _boundNormal = _.bind(func, thisArg),\