Skip to content

Commit

Permalink
formatting links in list
Browse files Browse the repository at this point in the history
  • Loading branch information
nurrony committed Feb 20, 2016
1 parent 6183dd5 commit c6f7f5a
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions _posts/en/2016-02-15-extract-unix-timestamp-easily.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,8 @@ or for specific date
```js
const timestamp = +new Date('2012-06-08')
```
Under the hood the runtime calls `valueOf` method of the Date object. Then the unary `+` operator calls `toNumber()` with that returned value. For detailed explanation please check the following links

[Date.prototype.valueOf](http://es5.github.io/#x15.9.5.8)
[Unary + operator](http://es5.github.io/#x11.4.6)
[toNumber()](http://es5.github.io/#x9.3)
Under the hood the runtime calls `valueOf` method of the `Date` object. Then the unary `+` operator calls `toNumber()` with that returned value. For detailed explanation please check the following links

* [Date.prototype.valueOf](http://es5.github.io/#x15.9.5.8)
* [Unary + operator](http://es5.github.io/#x11.4.6)
* [toNumber()](http://es5.github.io/#x9.3)

0 comments on commit c6f7f5a

Please sign in to comment.