JSFiddle - React, Tailwind, and code Playground
by arcm111
JavaScript
var theory= new Array();
var first = "first";
var second = "second";
function arrTheory () {
theory.first = first;
theory.second = second;
}
var subject= new Array();
function arrSubject () {
subject.theory= theory;
}
arrTheory();
arrSubject();
alert(subject.theory.first + " / " + subject.theory.second);