OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2015 the V8 project authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 var date = new Date("2016/01/02 10:00 GMT-8") | |
6 assertEquals(0, date.getMinutes()); | |
jungshik at Google
2016/01/04 20:05:08
Would it be a good idea to check hours as well ?
Dan Ehrenberg
2016/01/04 23:03:53
Good point; done
| |
7 | |
8 date = new Date("2016/01/02 10:00 GMT-12") | |
9 assertEquals(0, date.getMinutes()); | |
10 | |
11 date = new Date("2016/01/02 10:00 GMT-123") | |
12 assertEquals(23, date.getMinutes()); | |
13 | |
14 date = new Date("2016/01/02 10:00 GMT-0856") | |
15 assertEquals(56, date.getMinutes()); | |
16 | |
17 date = new Date("2016/01/02 10:00 GMT-08000") | |
18 assertEquals(NaN, date.getMinutes()); | |
OLD | NEW |