Quote (StormHasHe @ May 29 2012 11:30am)
I don't understand exactly what you want, but if you want to know a type of a object, you can use typeof(object).
Example:
Codefunction Types(){
var num = 0;
var str = "";
var boo = true;
alert(typeof(num));
alert(typeof(str));
alert(typeof(boo));
}
alright yeah thats pretty much what i was doing...is that all the question is asking? seemed kind of simple
This post was edited by Lightro on May 29 2012 01:33pm