javascript Programming Glossary: chord
Why is JavaScript prototyping? http://stackoverflow.com/questions/4650513/why-is-javascript-prototyping to Guitar via prototype Guitar.prototype.play function chord alert 'Playing chord ' chord Now make use of this new method.. Guitar.prototype.play function chord alert 'Playing chord ' chord Now make use of this new method in a pre declared instance.. function chord alert 'Playing chord ' chord Now make use of this new method in a pre declared instance myGuitar.play..
|