JS代码对缩进敏感吗?还是说这个题目验证有问题
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>认识语句</title>
<script type="text/javascript">
document.write("Hello");
//这里要是给缩进,慕课网页提交会报错
document.write("world");
</script>
</head>
<body>
</body>
</html>