[native code] hide
Completely useless but kind of cool.
by Scott Kaye
JavaScript
console.clear();
var secret = () => 5;
var native = secret.bind(this).bind(this);
console.log("native:", native, "result:", native());
by Scott Kaye
console.clear();
var secret = () => 5;
var native = secret.bind(this).bind(this);
console.log("native:", native, "result:", native());