<html>
<body>
<script type="text/javascript">
MyClass = function (id) {
}
MyClass.prototype.myFunc1 = function () {
alert("myFunc1");
}
MyClass.prototype = {
myFunc2:function () {
alert("myFunc2");
}
}
var myInstance = new MyClass({});
myInstance.myFunc1();
</script>
</body>
</html>
Running the above I get the error message
Uncaught TypeError: Object # has no method 'myFunc1'
If I delete myFunc2 entirely the error message goes away. What is happening here?
