Skip to content

Instantly share code, notes, and snippets.

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