using multiple values in trace()

Posted by druva | Flash, as3, utils | Tuesday 19 May 2009 12:50 am

in as3 trace you can pass multiple values without using ‘+’ operator

var a =1;
var b=2;
var c = 3;

trace(a, b, c);
//ouput 1 2 3