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 a859223 commit 433a109Copy full SHA for 433a109
JavaScript/10_Functions(5).js
@@ -0,0 +1,28 @@
1
+// First Example
2
+function doFirst() {
3
+ document.write("I am first bo!");
4
+}
5
+
6
+function doSecond() {
7
+ document.write(" 222222!!! ");
8
9
10
+function start() {
11
+ doFirst();
12
+ doSecond();
13
14
15
+start();
16
17
+// Second Example
18
19
+ document.write(" first! ");
20
21
22
23
24
+ document.write(" second! ");
25
26
27
28
+doFirst();
0 commit comments