but, text variable value can't be changed by passing to function like list (or array). I didn't have append or push syntax.
well, we can still use list
but list have comma, :(
so I updated the value by passing it to a function like this
function htmlOutput(form) {
var text = 'Tadaa...';
text+='Test';
text = dummy(text);
return text;
}
function dummy(text){
text+='hehehe';
return text;
}
.
No comments:
Post a Comment