saasbook

semicolon_misfeature.js

Jul 11th, 2012
262
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. // good: returns new object
  2. return {
  3. ok: true;
  4. };
  5. // bad: returns undefined, because JavaScript
  6. // inserts "missing semicolon" after return
  7. return
  8. {
  9. ok: true;
  10. };
Advertisement
Add Comment
Please, Sign In to add comment