2.5 KiB
2.5 KiB
title, id, challengeType, videoUrl, localeTitle
title | id | challengeType | videoUrl | localeTitle |
---|---|---|---|---|
Date manipulation | 5966c21cf732a95f1b67dd28 | 5 | 日期操纵 |
Description
给定EST中的日期字符串,将给定日期输出为字符串,并添加12小时。
时区应该保留。
示例输入:
"March 7 2009 7:30pm EST"
输出示例:
"March 8 2009 7:30am EST"
Instructions
Tests
tests:
- text: <code>add12Hours</code>是一个功能。
testString: assert(typeof add12Hours === 'function');
- text: <code>add12Hours(dateString)</code>应该返回一个字符串。
testString: assert(typeof add12Hours('January 17 2017 11:43am EST') === 'string');
- text: <code>add12Hours("" + tests[0] + "")</code>应该返回<code>"" + answers[0] + ""</code>
testString: assert(add12Hours('January 17 2017 11:43am EST') === 'January 17 2017 11:43pm EST');
- text: 汉德尔应该改变一天。 <code>add12Hours("" + tests[1] + "")</code>应返回<code>"" + answers[1] + ""</code>
testString: assert(add12Hours('March 7 2009 7:30pm EST') === 'March 8 2009 7:30am EST');
- text: 汉德尔月份应该在闰年中发生变化。 <code>add12Hours("" + tests[2] + "")</code>应返回<code>"" + answers[2] + ""</code>
testString: assert(add12Hours('February 29 2004 9:15pm EST') === 'March 1 2004 9:15am EST');
- text: 应该在一个共同的年份改变汉德尔月份。 <code>add12Hours("" + tests[3] + "")</code>应该返回<code>"" + answers[3] + ""</code>
testString: assert(add12Hours('February 28 1999 3:15pm EST') === 'March 1 1999 3:15am EST');
- text: 汉德尔应该改变一年。 <code>add12Hours("" + tests[4] + "")</code>应该返回<code>"" + answers[4] + ""</code>
testString: assert(add12Hours('December 31 2020 1:45pm EST') === 'January 1 2021 1:45am EST');
Challenge Seed
function add12Hours (dateString) {
// Good luck!
return true;
}
After Test
console.info('after the test');
Solution
// solution required