assert(ninja1.feints === undefined, "And the private data is inaccessible to us."); assert(ninja1.getFeints() === 1, "We're able to access the internal feint count.");
var ninja2 = new Ninja(); assert(ninja2.getFeints() === 0, "The second ninja object gets it’s own feints variable."); </script> </body> </html>