--- title: Date manipulation id: 5966c21cf732a95f1b67dd28 challengeType: 5 videoUrl: '' localeTitle: 日期操纵 --- ## Description
任务:

给定EST中的日期字符串,将给定日期输出为字符串,并添加12小时。

时区应该保留。

示例输入:

"March 7 2009 7:30pm EST"

输出示例:

"March 8 2009 7:30am EST"

## Instructions
## Tests
```yml tests: - text: add12Hours是一个功能。 testString: 'assert(typeof add12Hours === "function", "add12Hours is a function.");' - text: add12Hours(dateString)应该返回一个字符串。 testString: 'assert(typeof add12Hours(tests[0]) === "string", "add12Hours(dateString) should return a string.");' - text: 'add12Hours("" + tests[0] + "")应该返回"" + answers[0] + ""' testString: 'assert(add12Hours(tests[0]) === answers[0], "add12Hours("" + tests[0] + "") should return "" + answers[0] + """);' - text: '汉德尔应该改变一天。 add12Hours("" + tests[1] + "")应返回"" + answers[1] + ""' testString: 'assert(add12Hours(tests[1]) === answers[1], "Should handel day change. add12Hours("" + tests[1] + "") should return "" + answers[1] + """);' - text: '汉德尔月份应该在闰年中发生变化。 add12Hours("" + tests[2] + "")应返回"" + answers[2] + ""' testString: 'assert(add12Hours(tests[2]) === answers[2], "Should handel month change in a leap years. add12Hours("" + tests[2] + "") should return "" + answers[2] + """);' - text: '应该在一个共同的年份改变汉德尔月份。 add12Hours("" + tests[3] + "")应该返回"" + answers[3] + ""' testString: 'assert(add12Hours(tests[3]) === answers[3], "Should handel month change in a common years. add12Hours("" + tests[3] + "") should return "" + answers[3] + """);' - text: '汉德尔应该改变一年。 add12Hours("" + tests[4] + "")应该返回"" + answers[4] + ""' testString: 'assert(add12Hours(tests[4]) === answers[4], "Should handel year change. add12Hours("" + tests[4] + "") should return "" + answers[4] + """);' ```
## Challenge Seed
```js function add12Hours (dateString) { // Good luck! return true; } ```
### After Test
```js console.info('after the test'); ```
## Solution
```js // solution required ```