DEV Community

Discussion on: 7 Useful Javascript Tips

Collapse
 
alvechy profile image
Alex Vechy

Thanks for sharing. It's good to know tricks even if it's not good to use them.
Example with implicit number coercion on Date is misleading. I'll be disappointed to see it in some produciton code.

new Date(+new Date() + 10 *1000)
// vs
new Date(Date.now() + 10 * 1000)
Collapse
 
__victorchan profile image
Victor Chan

Ahh true, that looks much more understandable. Thanks for the feedback!