/WeIrD-StRiNg-CaSe

Solution to WeIrD StRiNg CaSe algorithm question on Codewars

WeIrD-StRiNg-CaSe

Solution to WeIrD StRiNg CaSe algorithm question on Codewars.

Write a function toWeirdCase (weirdcase in Ruby) that accepts a string, and returns the same string with all even indexed characters in each word upper cased, and all odd indexed characters in each word lower cased. The indexing just explained is zero based, so the zero-ith index is even, therefore that character should be upper cased and you need to start over for each word.

The passed in string will only consist of alphabetical characters and spaces(' '). Spaces will only be present if there are multiple words. Words will be separated by a single space(' ').

Examples: toWeirdCase( "String" );//=> returns "StRiNg" toWeirdCase( "Weird string case" );//=> returns "WeIrD StRiNg CaSe"


Solution

function toWeirdCase(string){
    let ans=[]
    let count=0
    string.toLowerCase().split('').forEach((value , i)=>{
      if(count==0 || count%2==0) ans.push(value.toUpperCase())
      else ans.push(value)
      count++
      if(value==' ') count=0
      })
    ans=ans.join('')
    return ans
}