General statistics
List of Youtube channels
Youtube commenter search
Distinguished comments
About
that\x27s a lot
Fireship
comments
Comments by "that\x27s a lot" (@thatsalot3577) on "" video.
I find react, very flexible to work with, especially with the hooks, JSX and styled components, you can pretty much do anything you already knew in JavaScript.
3
I would agree with you on that, I built my first todo app in vanilla js and avoided using innerhtml, so I had to write my own functions that take a javascript object and a parent tag, then create the html element and append it to the DOM for state management I just mutated the objects And when i switched to react I pretty much knew what it's doing for me (except for the virtual dom).
3
@LilmeMusic it's const e = document.createElement("tagname") Now you can add text to e as e.innerText = "hello world" You can alternatively use e.innerHtml (which is extremely dangerous and slow) to add entire html in template literals just like JSX.
3
@LilmeMusic now you're just making fun of me.
1