▲ | paulddraper 5 days ago | |
What part of JavaScript language should you not use? The only one that comes to mind is is `with`, which is officially discouraged in the spec. I suppose the other one is type coercion. (Like [] + [] stuff. That's no end of "ha ha JS weird.") | ||
▲ | nicoburns 5 days ago | parent [-] | |
with, == (except certain idiomatic uses), __prototype__, eval, etc. |