Skip to content

Commit 58bc1aa

Browse files
author
Ravindra Chhetri
committed
PATCH
1 parent 9453800 commit 58bc1aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

implementations/toLowerCase.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
And characters from a-z have ASCII code from 97-122.
1010
We're checking this condition to implement this function
1111
*/
12-
String.prototype.toLowerCase = function myToUpperCase() {
12+
String.prototype.toLowerCase = function myToLowerCase() {
1313
let lowerCaseString = '';
1414
for (let i = 0; i < this.length; i += 1) {
1515
const character = this[i];

0 commit comments

Comments
 (0)