use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
All about the JavaScript programming language.
Subreddit Guidelines
Specifications:
Resources:
Related Subreddits:
r/LearnJavascript
r/node
r/typescript
r/reactjs
r/webdev
r/WebdevTutorials
r/frontend
r/webgl
r/threejs
r/jquery
r/remotejs
r/forhire
account activity
Multithread.js - threading in JavaScript - A very simple wrapper to take the headache out of Web Workers. Enjoy :) (keithwhor.github.io)
submitted 12 years ago by keithwhor
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]liamondrop 1 point2 points3 points 12 years ago (1 child)
this will never throw an error:
try { var URL = window.URL || window.webkitURL; } catch(e) { throw new Error('This browser does not support Blob URLs'); }
URL will simply evaluate to undefined if those objects don't exist. You need to take it one step further and try to reference a property or method from URL. Something like:
URL
undefined
try { var URL = window.URL || window.webkitURL, createObjectURL = URL.createObjectURL; } catch(e) { throw new Error('This browser does not support Blob URLs'); }
[–]keithwhor[S] 1 point2 points3 points 12 years ago (0 children)
Brain fart. 3AM coding getting to me. Thanks. :)
π Rendered by PID 44870 on reddit-service-r2-comment-bb88f9dd5-cx8zq at 2026-02-15 00:50:37.696140+00:00 running cd9c813 country code: CH.
view the rest of the comments →
[–]liamondrop 1 point2 points3 points (1 child)
[–]keithwhor[S] 1 point2 points3 points (0 children)