<html>
<head>
<script type="text/javascript">
function Person (name, age) {
this.name = name;
this.age = age;
this.sayName = function () {
alert(this.name);
}
}
var person1 = new Person ("tom", 29);
var person2 = new Person ("frank", 21);
alert(person1.sayName==person2.sayName);
</script>
</head>
<body>
</body>
</html>
|
|
|||||||||||
|
|
There is nothing wrong with it (other than the slightly pedantic missing semicolon on line 6.) Because the People get around this by attaching the function to the prototype object instead:
This will create only one function (saving you memory) and the alert will say 'true'. |
|||||||||||
|
|
You are comparing the function pinters, not the results. Try:
But then again: your sayName() triggers another alert(). What is this code all about?? |
|||
|
|
|
However, you may have meant to compare the functions literally, which you can with And of course, they both have a different |
|||
|
|