Checks if the device is connected to any network.
app.IsConnected() → Boolean
See Also: SetWifiEnabled, WifiConnect, SetOnWifiChange
Example - Check Connected
function OnStart()
{
var isConnected = app.IsConnected();
app.Alert( isConnected, "is Connected:" );
}