There were some new ones here I didn't see before, thanks!
@Hector_donАй бұрын
Great! I always love watching your videos.
@2kgamerplays2582 ай бұрын
Need more video like this very useful
@omega.developer2 ай бұрын
Reveal all of frontend expert content over the time 😅. Your content on Js is pretty simple and watchable till the end 🎉
@ConnerArdman2 ай бұрын
Glad you like it! And lol, most of the value of FrontendExpert is the organization of the content, its multimodal nature, and the interview questions - none of which can really be replicated on KZbin. There’s no need to gatekeep little JavaScript tricks 😀
@omega.developer2 ай бұрын
😅@@ConnerArdman
@strategistaow35202 ай бұрын
@@ConnerArdman can you do TypeScript lessons too
@nicolasmayorga8288Ай бұрын
Really good video!
@whatskookin64292 ай бұрын
Cool very useful tips
@asagiai49652 ай бұрын
I was more surprised that you don't need to use const let or var to destructure array
@ConnerArdman2 ай бұрын
Const/let are used to declare new variable names, but in this case we already did that. It does look kinda weird though 😂
@asagiai49652 ай бұрын
@ConnerArdman don't we also do that to initialize destructure ex const [num] = [1,2,3,4,5] // so the keyword const here is not important?
@ConnerArdman2 ай бұрын
You don’t “initialize destructure”; you initialize variable names. Usually this means we do destructure with const/let because they are new variables. But you can also do something like this if the variable already exists. let num; [num] = whateverArray;
@asagiai49652 ай бұрын
@@ConnerArdman I see. Thanks
@sufyansyed12332 ай бұрын
Good one!! Would be really helpful if you provide timestamps
@jakefrost19672 ай бұрын
Hi. I liked this video. Interesting and useful.
@elvispalace2 ай бұрын
you are fire bro
@liviumatei17092 ай бұрын
how do you get the output watch thingy so you don't have to always run the file?
@ConnerArdman2 ай бұрын
I am running the file, just using a keyboard shortcut for it. But the output tab comes from a plugin called Code Runner