Skip to content

Commit ecbbbef

Browse files
committed
formatting using prettier
1 parent 4e87db6 commit ecbbbef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
// Use the MDN string documentation to help you find a solution
1616
// This might help https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/toUpperCase
1717
function upperSnakeCase(wordsSet) {
18-
let wsSnakeCase = wordsSet.replaceAll(' ','_');
18+
let wsSnakeCase = wordsSet.replaceAll(" ", "_");
1919
let wsupperSnakeCase = wsSnakeCase.toUpperCase();
2020
return console.log(wsupperSnakeCase);
2121
}
22-
upperSnakeCase('i do not know'); // evaluates to: "I_DO_NOT_KNOW"
22+
upperSnakeCase("i do not know"); // evaluates to: "I_DO_NOT_KNOW"

0 commit comments

Comments
 (0)