Skip to content

Commit 1393ad5

Browse files
committed
fixed the function to return the coverted value
1 parent 3adc57d commit 1393ad5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sprint-2/3-mandatory-implement/2-cases.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717
function upperSnakeCase(wordsSet) {
1818
let wsSnakeCase = wordsSet.replaceAll(" ", "_");
1919
let wsupperSnakeCase = wsSnakeCase.toUpperCase();
20-
return console.log(wsupperSnakeCase);
20+
return wsupperSnakeCase;
2121
}
2222
upperSnakeCase("i do not know"); // evaluates to: "I_DO_NOT_KNOW"

0 commit comments

Comments
 (0)