DO NOT EDIT THE CONTENT OF THIS PAGE DIRECTLY, UNLESS YOU KNOW WHAT YOU'RE DOING.		THE STRUCTURE OF THE CONTENT IS VITAL IN BEING ABLE TO EXTRACT CHANGES FROM THE PAGE AND MERGE THEM BACK INTO SERVOY SOURCE


Method Summery
void
#typeof()
Returns the type of the given object, one of these get returned: number, string, boolean, object, function, undefined.

Method Details
typeof
void
typeof
()
Returns the type of the given object, one of these get returned: number, string, boolean, object, function, undefined.
Returns
void
Sample
application.output(typeof("abc")); // string
application.output(typeof(10)); // number
application.output(typeof(10.1)); // number
application.output(typeof(true)); // boolean
application.output(typeof(parseInt)); // function
application.output(typeof(application)); // object
application.output(typeof(somethingInexisting)); // undefined