File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
console.log(returnTitle())
2+
console.log(returnHello());
3+
console.log(returnWorld());
4+
console.log(returnNothing());
5+
6+
function returnTitle() {
7+
return 1;
8+
}
9+
10+
function returnHello() {
11+
return 'Hello';
12+
}
13+
14+
function returnWorld() {
15+
return 'World';
16+
}
17+
18+
function returnNothing() {
19+
return;
20+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
console.log(multiply(7,4));
2+
3+
function multiply(firstNumber, secondNumber) {
4+
return firstNumber * secondNumber;
5+
}

0 commit comments

Comments
 (0)