JSFiddle - React, Tailwind, and code Playground
by ptitgraig
HTML
<ul id="pouet"></ul>
JavaScript
var toto = null;
try {
toto = y;
$('#pouet').append('<li>try : '+toto+"</li>");
} catch(e) {
$('#pouet').append('<li>catch : '+toto+"</li>");
toto = 'modif';
}
$('#pouet').append('<li>fin : '+toto+"</li>");