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 9453800 commit 58bc1aaCopy full SHA for 58bc1aa
implementations/toLowerCase.js
@@ -9,7 +9,7 @@
9
And characters from a-z have ASCII code from 97-122.
10
We're checking this condition to implement this function
11
*/
12
-String.prototype.toLowerCase = function myToUpperCase() {
+String.prototype.toLowerCase = function myToLowerCase() {
13
let lowerCaseString = '';
14
for (let i = 0; i < this.length; i += 1) {
15
const character = this[i];
0 commit comments