Hacker News new | past | comments | ask | show | jobs | submit login

One gotcha I've noticed a lot is when people forget to check for Console object. Or they might do this (doesn't work):

  if(!console)
instead of

  if(!window.console) or if( typeof console === 'undefined' )



I have to plug my console wrapper which takes care of problems like these :)

https://github.com/amadeus/dbg




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: