So we had the Discussion today in our company about +new Date() being good practice or not.
Some prefer this way over new Date().getTime().
The getTime method appears to be a huge amount faster:

Why is this the case?
Here's what happens when you call the getTime method on a Date instance:
Here's what happens when you apply the unary plus operator to a Date instance:
Date instance in question