表达式和返回值(JS)

<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>表达式和返回值</title>
<script>// 是由数字、运算符、变量等组成的式子 我们成为表达式 1 + 1
console.log(1 + 1); // 2 就是返回值
// 1 + 1 = 2

// 在我们程序里面 2 = 1 + 1 把我们的右边表达式计算完毕把返回值给左边
var num = 1 + 1;</script>
</head>

<body>

</body>

</html>