Skip to content

Commit 74abd50

Browse files
committed
Add solution
1 parent 71d167e commit 74abd50

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

index.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
function shout(string) {
2+
return string.toUpperCase()
3+
}
4+
5+
function whisper(string) {
6+
return string.toLowerCase()
7+
}
8+
9+
function logShout(string) {
10+
console.log(string.toUpperCase())
11+
}
12+
13+
function logWhisper(string) {
14+
console.log(string.toLowerCase())
15+
}

0 commit comments

Comments
 (0)