JSFiddle - React, Tailwind, and code Playground

HTML

<ul></ul>

JavaScript

function print(msg) {
    $('ul').append('<li>' + msg + '</li>');
}

for (var i = 0; i < 100; i++) {
    print((!(i%5)&&!(i%4))?'M'+'y'+' '+'W'+'e'+'b'+' '+'G'+'r'+'o'+'c'+'e'+'r':!(i%5)?'M'+'y'+' '+'W'+'e'+'b':!(i%4)?'G'+'r'+'o'+'c'+'e'+'r':i);
}