JVM Languages
jqa0801.txt
Associated article: Is JavaScript an Object-Oriented Language?
Tags: C/C++ JVM Languages
Published source code accompanying the article by Nadine McKenzie in whcih she examines the object-oriented-ness of JavaScript.
Java Q&A
by Nadine McKenzie
Listing One
function MyClassName(parameterA, parameterB)
{
// --- Object Properties ---
propertyR = "propertyR is read only.";
// --- Object Initialization ---
propertyA = parameterA;
propertyB = parameterB;
// --- Method Pointers ---
this.getPropertyA = _getPropertyA;
this....


