Skip to content

Instantly share code, notes, and snippets.

@jasonrhodes
Created July 7, 2014 15:06
Show Gist options
  • Save jasonrhodes/a45a45a981d2a4966f20 to your computer and use it in GitHub Desktop.
Save jasonrhodes/a45a45a981d2a4966f20 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
</body>
</html>
function introduce() {
console.log("Hello, my name is", this.name);
}
var lauren = {
name: "Lauren"
};
var dave = {
name: "Dave"
};
introduce.call(dave);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment