I find myself always typing something like
Alert.show("blah = " + blah);
In PHP we have
"blah = $blah"
In Ruby we have
"blah = #{blah}"
Do we have anything like that in Actionscript3?
Also...what is the proper name for what we are doing here?
Thanks!