I'm working on the Dive Into HTML 5 Tutorial on localstorage, and came across this piece of code:
function supports_html5_storage() {
try {
return 'localStorage' in window && window['localStorage'] !== null;
} catch (e) {
return false;
}
}
I understand the part about return 'localStorage' in window, etc, but what I don't understand is why the need for a try catch statement here? Isn't it enough to simply write the below?
function supports_html5_storage(){
return 'localStorage' in window && window['localStorage']!==null;
}
By the way: I do (kind of) know the purpose of try/catch, I'm just wondering what kind of exception can we be possibly expecting?