|
268 | 268 | ..finished();
|
269 | 269 | ```
|
270 | 270 |
|
271 |
| -| Method | Shorthand | Shorthand2 | |
272 |
| -| ------------------- | ---------------------------- | ----------------------- | |
273 |
| -| `.setYear()` | `setValue('year', 2020)` | `set('year', 2020)` | |
274 |
| -| `.setMonth()` | `setValue('month', 5)` | `set('month', 5)` | |
275 |
| -| `.setDate()` | `setValue('date', 1)` | `set('date', 1)` | |
276 |
| -| `.setHour()` | `setValue('hour', 11)` | `set('hour', 11)` | |
277 |
| -| `.setMinute()` | `setValue('minute', 31)` | `set('minute', 31)` | |
278 |
| -| `.setSecond()` | `setValue('second', 31)` | `set('second', 31)` | |
279 |
| -| `.setMillisecond()` | `setValue('millisecond', 1)` | `set('millisecond', 1)` | |
| 271 | +| Method | Shorthand | Shorthand2 | |
| 272 | +| ------------------- | ---------------------------- | ---------------- | |
| 273 | +| `.setYear()` | `setValue('year', 2020)` | `set('y', 2020)` | |
| 274 | +| `.setMonth()` | `setValue('month', 5)` | `set('M', 5)` | |
| 275 | +| `.setDate()` | `setValue('date', 1)` | `set('d', 1)` | |
| 276 | +| `.setHour()` | `setValue('hour', 11)` | `set('h', 11)` | |
| 277 | +| `.setMinute()` | `setValue('minute', 31)` | `set('m', 31)` | |
| 278 | +| `.setSecond()` | `setValue('second', 31)` | `set('s', 31)` | |
| 279 | +| `.setMillisecond()` | `setValue('millisecond', 1)` | `set('ms', 1)` | |
280 | 280 |
|
281 | 281 | ## Manipulating
|
282 | 282 |
|
|
0 commit comments