I'm struggling to understand the difference of the following 2 sets of code. The original code is from the famous Ninja tutorial and I have simplified a bit for myself.
Question: I think I understand how CodeA works. Ninja.prototype.swung = false is assigning a new property into function Ninja(), and ninjiaA.swung evaluates to false because of that. However, in CodeB, when we declare the function Ninja() with this.swung = true in the beginning, the later assignment of Ninja.prototype.swung = false does not take an effect, and ninjaA.swung remains to be evaluated to true. I'm failing to understand why this later assignment does not work in CodeB. Could somebody please enlighten me on this?
CodeA:
function Ninja(){}
Ninja.prototype.swung = false;
var ninjaA = new Ninja();
ninjaA.swung; //evaluates to false
CodeB:
function Ninja(){
this.swung = true;
}
Ninja.prototype.swung = false; //I'm expecting this changes swung to false,
//but it doesn't.
var ninjaA = new Ninja();
ninjaA.swung; //evaluates to true
Thanks a lot in advance.

