function jsonObj(text, nodes){
this.text =text;
this.nodes =nodes;
}
我想把nodes作為數組,這樣可以插入多個對象,現在這樣只能插一個對象
function jsonObj(text, nodes){
this.text =text;
this.nodes =[nodes];/////
}
jsonObj.prototype.add=function(node){
this.nodes.push(node)
}