JSFiddle - React, Tailwind, and code Playground

by Angelo Rogério Rubin

HTML

<form>
    <legend></legend>
    <label>Nome:</label>
    <input type="" />
    
</form>

JavaScript

array = Array(); // array type 
string = 'Isto e uma string com float -1425353,00 e caracteres'; // string type
number = -123,897; // float type
boleano = true; // boolean type
// console.log(typeof(boleano));