Skip to content

Instantly share code, notes, and snippets.

@jawache
Created March 13, 2016 17:36
Show Gist options
  • Save jawache/de6f5858f28d5d30ac8c to your computer and use it in GitHub Desktop.
Save jawache/de6f5858f28d5d30ac8c 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);
}
sayHello.call("Asim", "Hussain");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment