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().
+new Date()
new Date().getTime()
IMHO, when there isn't much difference in performance, legibility should always win out. We should all be practicing WCTR "writing code to be read." Therefore, for me, this is best practice:
(new Date()).getTime();