<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>语句简写</title>
</head>
<body>
<script>

var score = 10;

if (score > 100)
console.log('OK')

console.log('哈哈哈')
console.log('直接来这里')
</script>
</body>
</html>

相关文章:

  • 2021-09-09
  • 2021-07-24
  • 2022-01-25
  • 2022-12-23
  • 2021-09-24
  • 2021-06-16
  • 2021-12-17
  • 2021-08-31
猜你喜欢
  • 2021-08-31
  • 2021-09-19
  • 2022-12-23
  • 2021-07-02
  • 2022-12-23
  • 2022-02-25
相关资源
相似解决方案