We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9eb369c commit f341f30Copy full SHA for f341f30
REPL/README.md
@@ -1,3 +1,36 @@
1
# REPL
2
3
REPL stands for Read-Evaluate-Print-Loop, and it's a great way to explore the Node.js features in a quick way.
4
+
5
+## Open your Gitbash and run
6
7
+```bash
8
+ node
9
+```
10
11
+Now you can write Javascript code on your terminal!
12
+Example:
13
14
15
+ > console.log("Hello World");
16
17
18
19
+ > const name = "Drian";
20
21
22
23
+ > name
24
25
26
+Type '.help' for more information
27
28
29
+ > .help
30
31
32
+To exit REPL you can run
33
34
35
+ > .exit
36
REPL/learn1.js
@@ -0,0 +1,2 @@
+const nama = "Drian";
+const umur = 18;
0 commit comments