We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7e9c30 commit f75e146Copy full SHA for f75e146
examples/part1/003.js
@@ -1,4 +1,4 @@
1
console.log('Visual Studio Code로 코드 실행해보기 1');
2
var a = 5;
3
var b = 2;
4
-console.log(a + b);
+console.log(a + b);
examples/part1/004.js
@@ -0,0 +1,4 @@
+console.log('Visual Studio Code로 코드 실행해보기 2');
+var a = 5;
+var b = 2;
examples/part1/005.js
@@ -0,0 +1,8 @@
+var name = "Peter"
+var number = 200
+var isTrue = true
+var nothing = null
5
+var empty = undefined
6
+var list = []
7
+var ref = {}
8
+var func = function(){}
examples/part1/index.html
@@ -7,4 +7,4 @@
<body>
<script type="text/javascript" src="./003.js"></script>
9
</body>
10
-</html>
+</html>
0 commit comments