What does an exclamation mark before a function do?
Example:
return !loadDynamicBlock();
The ! in Javascript inverts a boolean expression.
!