Any trick how to view with out spaces?
var num=12
var num1=33
var hm=apple
var al=orange
if var's has values:
var num=12
var num1=33
var hm=apple
var al=orange
this.getField("Text1").value="check"+num+" "+hm+" "+num1+" "+al+" with :"
i want this
check 12 apple 33 orange
but when i have
var num=""
var num1=33
var hm=""
var al=orange
check 33 orange
why var with "" system add space? how to add "nothing"
e.g.
check 33 orange
