Quick feature checking in JS
'example' in navigator; // => false
Make it a function:
function exampleExists() {
return 'example' in navigator;
}
exampleExists(); // => false
How about reusable?
function featureExists(feature) {
return feature in navigator;
}
Not much more to it than that. Comes in handy when depending on Modernizr might be a bit too much.
Written by Lee Machin
Related protips
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
#Javascript
Authors
Related Tags
#javascript
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#