以下哪个语句能正确弹出结果: ( )
A: 其余三个结果都正确
B: alert(new Date(2011 , 12 , 25 , 5 , 5 , 9).getDay());
C: alert(new Date(2011 , 12 , 25 , 5).getDay());
D: alert(new Date(2011 , 12 , 25).getDay());
A: 其余三个结果都正确
B: alert(new Date(2011 , 12 , 25 , 5 , 5 , 9).getDay());
C: alert(new Date(2011 , 12 , 25 , 5).getDay());
D: alert(new Date(2011 , 12 , 25).getDay());
举一反三
- 以下哪个语句能正确弹出结果( )。 A: alert( new Date( 2020 , 5 , 18).getDay( ) ); B: alert( new Date( 2020, 5 ,18 , 5 ).getDay( ) ); C: alert( new Date( 2020 , 5,18,5,9 ).getDay( ) ); D: 其它三个选项都正确。
- 关于代码“alert(2 * 3 + 25 / 5 - 1)”的输出结果,下列选项正确的是()
- 以下对于Date对象的说法正确的是( ) A: new Date();创建一个Date对象,同时获取当前的日期时间信息。 B: getDate()从 Date 对象返回一个月中的某一天 (1 ~ 31) C: getDay()从 Date 对象返回一周中的某一天 (0 ~ 6) D: getFullYear()从 Date 对象以四位数字返回年份
- Date对象的常用方法中,()方法能够返回日期中的天数。 A: getDate() B: getDay() C: getdate() D: getday()
- 已知 java.util.Date[] dates = new java.util.Date[10], 以下哪个描述是正确的?(). A: dates is null B: dates[0] is null C: dates = new Date() is fine, which creates a new Date object and <br/>assigns to dates D: dates = new java.util.Date[5] is wrong