Back
GetAppName
Hello World
Returns the name of the current app.
app.GetAppName() →
String
Example - Show app name
function
OnStart
(
)
{
var
name
=
app
.
GetAppName
(
)
;
app
.
Alert
(
name
)
;
}
Copy
Copy All
Run