Hello everybody,
here is short notice of how to define properties in javascript:
So, lets say you want to have class Dog, with "private" field alias and public property Alias. you can achieve it in the following way:
function Dog(nameOfDog) {
var alias = nameOfDog;
&nb...