Guest User

Untitled

a guest
Jun 20th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. try {
  2.  
  3. print(fn1);
  4. print(fn2);
  5.  
  6. function fn1 () {} // FunctionDeclarations
  7. (function fn2 () {}) // FunctionExpression
  8.  
  9. } catch (e) {
  10.  
  11. print(e); // => ReferenceError: Can't find variable: fn2
  12.  
  13. }
Add Comment
Please, Sign In to add comment