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 52a1b76 commit 5cf8a5aCopy full SHA for 5cf8a5a
Sprint-2/3-mandatory-implement/2-cases.js
@@ -16,9 +16,9 @@
16
// This might help https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/toUpperCase
17
18
function upperSnakeCase(str){
19
- str = str.toUpperCase()
+ str.toUpperCase()
20
21
- return str.replaceAll(" " , "_");
+ return str.toUpperCase().replaceAll(" " , "_");
22
;
23
24
}
0 commit comments