JSFiddle - React, Tailwind, and code Playground

by LeGEC

JavaScript

$.getJSON('/echo/json',
{json: JSON.stringify({
  text: 'some text', array: [1, 2, 'three'],
  object: {
      par1: 'another text', par2: [3, 2, 'one'], par3: {}
    }
  }),
  delay: 3
}, function(obj){ console.log(obj); });