Created
November 16, 2013 23:52
-
-
Save jocoonopa/7507041 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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