Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
136 views
in Technique[技术] by (71.8m points)

javascript - +new Date() - Is this good practice?

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().

In my opinion, this is pretty convenient but on the other side one would say it's harder to read.

Are there any pros or cons besides the obvious "It's harder to understand for people not familiar with the unary operator"?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

The getTime method appears to be a huge amount faster:

enter image description here

Why is this the case?

Here's what happens when you call the getTime method on a Date instance:

  1. Return the value of the [[PrimitiveValue]] internal property of this Date object.

Here's what happens when you apply the unary plus operator to a Date instance:

  1. Get the value of the Date instance in question
  2. Convert it to a Number
    1. Convert it to a primitive
      1. Call the internal [[DefaultValue]] method

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...