分支和循环的简写

<!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>

posted @ 2018-08-09 14:58  python成长中  阅读(1718)  评论(0编辑  收藏  举报