Last active
December 14, 2015 13:08
-
-
Save jcsrb/5091146 to your computer and use it in GitHub Desktop.
which is preferred?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var hasNativeAudio = !!window.Audio; // cast to Boolean?, this is how Modernizr checks | |
// or | |
var hasNativeAudio = typeof window.Audio != 'undefined'; // check if defined | |
// or | |
var hasNativeAudio = 'Audio' in window; // check if in scope |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment