麻烦老师检查一下是否符合要求
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>toUpperCase和toLowerCase</title>
</head>
<body>
<script>
var str="Never deter till tomorrow that which you can do today";
var index=str.indexOf('tomorrow');//补充代码
//document.write(index);
var strNew=str.substr(index,8);//补充代码
var upperStr=strNew.toUpperCase();//补充代码
document.write(upperStr);
</script>
</body>
</html>
12
收起
正在回答
1回答
同学你好, 符合要求, 代码也很简洁, 棒棒哒! 继续加油~
欢迎采纳, 祝学习愉快~~
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星