diff --git a/_posts/en/2016-02-15-extract-unix-timestamp-easily.md b/_posts/en/2016-02-15-extract-unix-timestamp-easily.md index 3662ded8..0a6a8222 100644 --- a/_posts/en/2016-02-15-extract-unix-timestamp-easily.md +++ b/_posts/en/2016-02-15-extract-unix-timestamp-easily.md @@ -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) \ No newline at end of file