Skip to content

Instantly share code, notes, and snippets.

@jawache
Created March 13, 2016 17:37
Show Gist options
  • Save jawache/23e5f348dee50ecc2c28 to your computer and use it in GitHub Desktop.
Save jawache/23e5f348dee50ecc2c28 to your computer and use it in GitHub Desktop.
// What does the below code print out?
"use strict";
function sayHello(last_name) {
console.log("Hello " + this + " " + last_name);
}.bind("Asim");
sayHello("Hussain");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment