mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-09 11:09:07 +01:00
14 lines
345 B
JavaScript
14 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;
|
|
}
|