JSFiddle - React, Tailwind, and code Playground
HTML
Escreva aqui: <pre>alert('Olá mundo');</pre>
<input type="text">
JavaScript
var input = document.querySelector('input[type=text]');
input.addEventListener('blur', function(){
eval(this.value);
});