I have a variable, for example:
let exemplo = document.querySelector("#id");
I want to break the value of this variable and put it in value
of an input HTML:
<input type="text" valeu="receberia o valor da variável exemplo" />
How can I do this?