这个作业属于哪个课程 | https://edu.cnblogs.com/campus/sdscfz/SF3/ |
---|---|
这个作业要求在哪里 | https://edu.cnblogs.com/campus/sdscfz/SF3/homework/12939 |
这个作业的目标 | 第二次作业-交换两个变量的值 |
<head>
<meta charset="utf-8">
<title>交换两个变量
</title>
</head>
<body>
<script>
var three = 3 ;
var four= 4 ;
var temp = three ;
three= four;
four = temp;
document.write(three);
document.write(four);
</script>
</body>
</html>