Skip to content

Instantly share code, notes, and snippets.

@jcsrb
Last active December 14, 2015 13:08
Show Gist options
  • Save jcsrb/5091146 to your computer and use it in GitHub Desktop.
Save jcsrb/5091146 to your computer and use it in GitHub Desktop.
which is preferred?
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