JSFiddle - React, Tailwind, and code Playground

by Mark Polyakov

JavaScript

var greetings=['hi','bye'];
console.log(greetings);
setTimeout(function(){
    greetings.push('goodbye');
},3000);