1:06 why don't you just use structuredClone()? Why are you abusing JSON.parse(JSON.stringify()) here?
@BenjaminAster2 жыл бұрын
@@ИванРыженков-к1ф Я знаю, что я супер крутой, спасибо!
@edwinroman302 жыл бұрын
The structuredClone() method is not supported by some web browsers as Chrome, Edge... But at lease work in node 17 :)
@edwinroman302 жыл бұрын
Thanks to the video and your comment, I learnt two ways 🙌
@dcode-software2 жыл бұрын
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.
@karimnassir52072 жыл бұрын
Best channel in youtube
@minnuss2 жыл бұрын
Great content !
@abubalo2 жыл бұрын
Thanks for these useful tips, Dom.
@edwinroman302 жыл бұрын
Thanks for these tricks, have a great day!
@timelesscode3232 жыл бұрын
Thanks for great tips
@DigitalFox-tutorials2 жыл бұрын
Useful video, thanks.
@rachidb96242 жыл бұрын
Thanks mate !
@BenjaminAster2 жыл бұрын
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.
@VforVanish2 жыл бұрын
Thank you, this was really usefull!
@robwatson8262 жыл бұрын
Object destructiring is the best thing since sliced bread. Love a bit of `let { prop1, prop2 } = obj`
@s21ekosn82 жыл бұрын
Thank U So Much dCode 👍
@dcode-software2 жыл бұрын
Welcome 👍
@wisdomelue2 жыл бұрын
very helpful thank you
@Marcieur2 жыл бұрын
It is also possible to use the new Set trick with spreading as in const noDuplicates = [...new Set(duplicates)];
@BenjaminAster2 жыл бұрын
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.
@beinyourguard2 жыл бұрын
very good
@re.liable2 жыл бұрын
Null coalescing instead of `||` The self-invoking functions are called IIFEs I think
@kaionayon8678 Жыл бұрын
Anonymous function too
@longingbydesign2 жыл бұрын
I want those 9 minutes back
@kabitamudel10112 жыл бұрын
𝙉𝙞𝙘𝙚 𝙩𝙞𝙥𝙨
@prakashdsouza72862 жыл бұрын
Hi bro
@dcode-software2 жыл бұрын
How's it going
@ijajulislam72232 жыл бұрын
sir plz make react tutorial
@mohammedabdulaziz36582 жыл бұрын
hello sir, your udemy link is not working
@dcode-software2 жыл бұрын
Hey, yes not at the moment but hopefully soon I'll have some more courses up, thanks!
@augischadiegils.51092 жыл бұрын
❤️❤️❤️❤️
@TheBorninmotion2 жыл бұрын
goood!
@iamvishalnishad2 жыл бұрын
👍❤️
@goljivines73562 жыл бұрын
turn to javascript frameworks like react and node js
@BenjaminAster2 жыл бұрын
You're either trolling or don't get the point of dcode's content.
@minnuss2 жыл бұрын
React is a js library and Node js is a runtime environment 😉
@MrBrady9511 ай бұрын
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.