Skip to content

Commit 17cd760

Browse files
committed
changing variable name based on mentor feedback
1 parent d38452c commit 17cd760

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616
// This might help https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/toUpperCase
1717

1818
function toUpperSnakeCase(str) {
19-
const toCapitalized = str.toUpperCase().replace(/ /g, "_");
20-
return toCapitalized;
19+
const convertToUpperSnakeCase = str.toUpperCase().replace(/ /g, "_");
20+
return convertToUpperSnakeCase;
2121
}

0 commit comments

Comments
 (0)