JSFiddle - React, Tailwind, and code Playground

by g30rg3

HTML

<div id="results">

</div>

JavaScript

log(encodeURIComponent(JSON.stringify([{prop1:"v1"}])));


function log(input){
	document.querySelector('#results').innerText = input;
}