Child pages
  • Special Operators
Skip to end of metadata
Go to start of metadata

Refresh page Mar 28, 2024 20:31

Supported Clients
SmartClient WebClient NGClient MobileClient

Methods Summary
void typeof() Returns the type of the given object, one of these strings get returned: "number", "string", "boolean", "object", "function" or undefined if the object doesn't exists.

Methods Details

typeof()

Returns the type of the given object, one of these strings get returned: "number", "string", "boolean", "object", "function" or undefined if the object doesn't exists.

Supported Clients

SmartClient,WebClient,NGClient,MobileClient

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

  • No labels

1 Comment

  1. Anonymous

    What about null ?