Skip to content

Instantly share code, notes, and snippets.

@P0lip

P0lip/concat.js Secret

Created May 2, 2017 07:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save P0lip/16b4573ab73bab4e7c03660f6f9780be to your computer and use it in GitHub Desktop.
Save P0lip/16b4573ab73bab4e7c03660f6f9780be to your computer and use it in GitHub Desktop.
function concat(a, b) {
return a + b;
}
concat('netguru', ' .com');
concat('p0lip loves ', 'v8');
%OptimizeFunctionOnNextCall(concat);
concat('optimized now! ', 'wooohooo');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment