I work with JavaScript on my bachelor thesis.
I would like to read a string and mark the elements that are the same and follow each other in the same color.
I have not found a good approach yet.
I would be grateful for a good proposal.
This is what i have right now.
      function colorsetting(input){
        var collength = input.length;
        var now = '', last2 = '', colored = '';
        now = last2 = input[0];
        for(var i = 1; i <= collength, i++){
          if(now !== last2){
            colored = last2.fontcolor("green");
            last2 = now;
          }
          now = input[i];
        }
        colored = last2.fontcolor("red");
          return colored;
      }
 
    