Skip to content

Instantly share code, notes, and snippets.

@jocoonopa
Created November 16, 2013 23:52
Show Gist options
  • Save jocoonopa/7507041 to your computer and use it in GitHub Desktop.
Save jocoonopa/7507041 to your computer and use it in GitHub Desktop.
<!doctype html>
<html lang="zh-tw">
<head>
<meta charset="UTF-8">
<title>Javascript函式獨立性</title>
</head>
<body>
</body>
<script>
function Person ( name ) {
this.name = name;
this.getName = function () {
console.log( '我的名字是:' + this.name );
};
}
var jocoonopa = new Person ( 'jocoonopa' );
jocoonopa.getName();
var name = '測試用';
jocoonopa.getName.call( window );
</script>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment