How would you define an object in Javascript such that its body would include properties that are also the object you're defining? For example if I was defining a class called Organism - and the definition of any organism included two more organisms called organismA and organismB? Is it like this:
Organism (){
value: value
Organism organismA; //microbe for example
Organism organismB; //bacteria for example
};