mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-09 19:19:07 +01:00
15 lines
345 B
JavaScript
15 lines
345 B
JavaScript
|
String.prototype.toAlternatingCase = function () {
|
||
|
// Define your method here :)
|
||
|
let result = "";
|
||
|
|
||
|
for (let i = 0; i < this.length; i++) {
|
||
|
if (this[i].toLowerCase() === this[i]) {
|
||
|
result += this[i].toUpperCase();
|
||
|
} else {
|
||
|
result += this[i].toLowerCase();
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return result;
|
||
|
}
|