Would it be faster to just put code inside a try-catch block instead of performing various error checks?
For example..
function getProjectTask(projec
Sure, it makes for more compact code, but it reduces your debug ability and makes adding graceful error-recovery, or useful error messages much, much, harder.