Posts by Bruno Santana • 11 points
2 posts
-
0
votes3
answers37
viewsQ: Doubt in the execution
I am attending the basic course of Reactjs of João Ribeiro, and in class 17 he writes the following code: class App extends React.Component { metodo = (texto) => { console.log(texto) } render() {…
-
0
votes1
answer152
viewsQ: How do I join texts in a Textarea with Js?
I’m trying to make a tabulation, where the result would be shown in an already existing textarea in HTML. I am using innerText to insert the text in this textarea, only the text is being replaced…