Wow I'm so legit amazed by this. I am floored. Ill be offering this service to my freelance portfolio.
@abulka6 ай бұрын
Very clear tutorial of the basics, thanks.
@laughingvampire75556 ай бұрын
the best thing of these libraries is that we gain back the interactivity because we are back in JS, no need to compile TS/JSX
@silasmurithi47062 жыл бұрын
Awesome , thu' I was waiting for how to search and delete items in the list lol.
@RootsterAnon2 жыл бұрын
for search you can use .filter (const ages = [32, 33, 16, 40]; const result = ages.filter(checkAdult); function checkAdult(age) { return age >= 18; }) and for delete you can use .splice (const fruits = ["Banana", "Orange", "Apple", "Mango"]; fruits.splice(2, 0, "Lemon", "Kiwi");)
@kimbapslayer19952 жыл бұрын
Only thing that throws me off is having empty values between tags lol. Too bad HTML requires closing tags unlike jsx that can have a self closing tag.
@bayrockdev2 жыл бұрын
True, but if it was self closing then you would confuse it to be a JSX component. This way you know it is vanilla HTML.
@KevinArellano2 жыл бұрын
1st and no... I'll stick with html and nothing more. That’s correct, no css nor Javascript.
@RootsterAnon2 жыл бұрын
lol, what are you talking about> 🤣🤣🤣🤣
@KevinArellano2 жыл бұрын
@@RootsterAnon I was kidding lol. My jokes are beyond human comprehension.
@RootsterAnon2 жыл бұрын
@@KevinArellano you don't understand how relieved I am right now. You got me there... I confess... :D
@chawza84023 ай бұрын
@@KevinArellano tbh for a simple app. this js might save some time