online()
更新日: 2018-09-14
is.online()
現在の端末がオンラインかどうかを判定します。
- インターフェース:
not
is.online();
=> 端末がオンラインならtrueを返します。
is.not.online();
=> 端末がオンラインでないならtrueを返します。
デモ
端末を判定してconsole.log
を出力します。
JavaScript
if (is.online()) {
console.log('使用している端末はオンラインです。');
} else {
console.log('使用している端末はオンラインではありません。');
}
© 2014-2016 Aras Atasaygin Released under the MIT license
このコンテンツはAras Atasaygin(arasatasaygin)によるis.jsドキュメントを翻訳/改変したものです。