1:06 why don't you just use structuredClone()? Why are you abusing JSON.parse(JSON.stringify()) here?
@BenjaminAster3 жыл бұрын
@@ИванРыженков-к1ф Я знаю, что я супер крутой, спасибо!
@edwinroman303 жыл бұрын
The structuredClone() method is not supported by some web browsers as Chrome, Edge... But at lease work in node 17 :)
@edwinroman303 жыл бұрын
Thanks to the video and your comment, I learnt two ways 🙌
@dcode-software3 жыл бұрын
You're right, structured clone may be the better alternative if it's supported on the environment users are on, but in many cases people are targetting the browser which this method isn't fully supported on as of right now.
@edwinroman303 жыл бұрын
Thanks for these tricks, have a great day!
@robwatson8263 жыл бұрын
Object destructiring is the best thing since sliced bread. Love a bit of `let { prop1, prop2 } = obj`
@minnuss3 жыл бұрын
Great content !
@abubalo3 жыл бұрын
Thanks for these useful tips, Dom.
@BenjaminAster3 жыл бұрын
3:18 Use ??, not || here because if the value is zero, false or an empty string you wouldn't want it to fall back to the default.
@DigitalFox-tutorials3 жыл бұрын
Useful video, thanks.
@timelesscode3233 жыл бұрын
Thanks for great tips
@s21ekosn83 жыл бұрын
Thank U So Much dCode 👍
@dcode-software2 жыл бұрын
Welcome 👍
@VforVanish3 жыл бұрын
Thank you, this was really usefull!
@rachidb96243 жыл бұрын
Thanks mate !
@wisdomelue2 жыл бұрын
very helpful thank you
@longingbydesign3 жыл бұрын
I want those 9 minutes back
@Marcieur2 жыл бұрын
It is also possible to use the new Set trick with spreading as in const noDuplicates = [...new Set(duplicates)];
@re.liable2 жыл бұрын
Null coalescing instead of `||` The self-invoking functions are called IIFEs I think
@kaionayon8678 Жыл бұрын
Anonymous function too
@BenjaminAster3 жыл бұрын
0:05 just use a real function () {} (not an arrow function) here, then you can use the "this" keyword. So you can just say this.className.
@beinyourguard3 жыл бұрын
very good
@augischadiegils.51092 жыл бұрын
❤️❤️❤️❤️
@kabitamudel10112 жыл бұрын
𝙉𝙞𝙘𝙚 𝙩𝙞𝙥𝙨
@TheBorninmotion3 жыл бұрын
goood!
@prakashdsouza72863 жыл бұрын
Hi bro
@dcode-software3 жыл бұрын
How's it going
@mohammedabdulaziz36583 жыл бұрын
hello sir, your udemy link is not working
@dcode-software3 жыл бұрын
Hey, yes not at the moment but hopefully soon I'll have some more courses up, thanks!
@ijajulislam72233 жыл бұрын
sir plz make react tutorial
@iamvishalnishad3 жыл бұрын
👍❤️
@goljivines73563 жыл бұрын
turn to javascript frameworks like react and node js
@BenjaminAster3 жыл бұрын
You're either trolling or don't get the point of dcode's content.
@minnuss3 жыл бұрын
React is a js library and Node js is a runtime environment 😉
@MrBrady95 Жыл бұрын
What makes the first example a "must know?" It's interesting but doesn't seem very practical, seems like de-structuring for it's own sake. Much easier and more common to use the (e) instead.