Yes that's it. Destructuring works for objects attributes OR even positional properties of Array with Const keyword const [first, second] = [1,2] const {f, s} = {f:1, s:2}
@@cipherxen2 ok let me know when it changes from calling it destructuring and this comment thread will become irrelevant. Until such a time as that occurs, the thing is called destructuring.
3:37 I'd like to add that it's worth remembering that using spread operator on arrays have iteration cost attached to it, so the larger the array the slower this works. So, if your code is called many times over it's better to merge arrays in traditional way by pushing elements of one into another. It doesn't matter on small arrays, but on actually large ones (thousands of items) this may cause a noticeable lag. 6:33 6-digit hexadecimal number. In decimal (default representation in console) it can go up to 8 digits. ;)
Another approach is to have a third array that is updated at the same time as the other two. The downside would be that it has to search for the entries, but if using a map, that can be solved through using proper keys.
This is a nice list, but I would strongly recommend w this being a teaching channel, to mention the technical name of some of these patterns and operators as you go. Spread operator, object destructuring syntax, guard blocks, etc.
I created a random background-color generator with copy-to-clipboard inside a hex code div (the hex code shows inside the div). Click the button to generate a random colour and if you like it, click the hex field div to copy it. Great little video that has definitely improved my abilities and knowledge, ta Ed 😀😎
Cool tricks! Fun fact: You can make `const copy = (text) => navigator.clipboard.write(text)` even shorter `const copy = navigator.clipboard.write` no need to wrap in another function that takes text and passes text to it.
Super important to note that the Navigator.Clipboard API only works locally or in HTTPS. So if you want to make an insecure HTTP website, copying text won't work!
I guess that explains why it was not working for me on codepen. Sure, codepen does use HTTPS but i guess it has something to do with it... Because it is not working at all on codepen
0:47 Design Mode - awesome feature, I like it! Almost all rest poor, because it is something like part of ECMA standards. Also last one looks impressive. Good job, man, anyway! Thank you!
// SuerySelector .............................................. function Selector(selector) {return document.querySelector(selector)} // QuerySelectorAll .............................................. function SelectorAll(selector) {return document.querySelectorAll(selector)} With this code, you can call any element in an easy and short way Example: let Element = Selector('Target_Element') // return Element or let Element = SelectorAll('Target_Element') // Return Array Of Element
Nice video, Blender in combination with Babylon js would be awesome. Not many people make tutorials about Babylon js while it is a great 3D engine for in the browser
9:22 or you just set the visibility to hidden aswell. This will not transition by itself, so you'll still need opacity, but it will change the value once the transition is done.
Setting visibility to hidden will disable pointer events on the element, but other elements in the DOM will be affected by its positioning (unless it's set to an absolute or fixed position). To keep the element on the page, you should set it to "display: none;" so that way it will not affect the layout of other DOM elements and be removed from visibility.
Hey ED :) ! I saw in one of your other video that you had a vs code theme with a gradient up in the title bar in one of your recent videos and i thought it looked SO cool that i figured out how to do it myself :D ... But now you dont have it anymore i see .
2:45 you aren't merging two arrays, what you're doing is concatenation. Merging two arrays is more like a zip operation. Loop over one and and use the current index to get the corresponding element in the other array, then combine both values as a tuple, or whatever structure you need.
I knew designMode, the extraction (because I use a module that imports like that), the clipboard one, transitionend, the short if statements (i use those a lot too!), console.table, and the screen capture. I knew like 70% of those, but still good video
With the first video, the CSS one, you got my like and save, with this second one you got my like and subscribe!
I think what you were calling extraction is actually called destructuring (like it's proper term). Nice video, definitely learnt something new
Yes that's it. Destructuring works for objects attributes OR even positional properties of Array with Const keyword
const [first, second] = [1,2]
const {f, s} = {f:1, s:2}
Who gets to decide which is term is proper and which is not?
@@cipherxen2 the language spec?
@@anarchoyeasty3908 language specs are not written in stone, they also change
@@cipherxen2 ok let me know when it changes from calling it destructuring and this comment thread will become irrelevant. Until such a time as that occurs, the thing is called destructuring.
3:37 I'd like to add that it's worth remembering that using spread operator on arrays have iteration cost attached to it, so the larger the array the slower this works. So, if your code is called many times over it's better to merge arrays in traditional way by pushing elements of one into another. It doesn't matter on small arrays, but on actually large ones (thousands of items) this may cause a noticeable lag.
6:33 6-digit hexadecimal number. In decimal (default representation in console) it can go up to 8 digits. ;)
Another approach is to have a third array that is updated at the same time as the other two. The downside would be that it has to search for the entries, but if using a map, that can be solved through using proper keys.
Always amazing to be greeted as "gorgeous" 😅😁
With all due respect, I thought you're already fed up with it. You must be called gorgeous all the time... :$
Damn, people are now hitting on girls on TH-cam nowadays. What a time to be alive
@@elfelipe1996 Absolutely not, just stated the obvious!
Yeah, this guy is a smoothie
but you aint gorgeous
This is a nice list, but I would strongly recommend w this being a teaching channel, to mention the technical name of some of these patterns and operators as you go. Spread operator, object destructuring syntax, guard blocks, etc.
I've always called the "one line if" a guard statement, or a guard if statement. Helps a ton with nesting.
"guard statement" is a proper term for the thing as well
I created a random background-color generator with copy-to-clipboard inside a hex code div (the hex code shows inside the div).
Click the button to generate a random colour and if you like it, click the hex field div to copy it. Great little video that has definitely improved my abilities and knowledge, ta Ed 😀😎
Dude. The random hex was super clever. My favorite new trick.
You are a developer and a successful youtuber, but from the outlook, you could be an actor too. No joke.
Array.from(new Set([…..])) is much cleaner than what you did and is the preferred way btw
Cool!
Although I knew most of these one-liners. Only DesignMode and transitioned events are new to me.
Thanks for sharing.
8. is actually called a Guard Clause, very useful to avoid nested if statements!
Cool tricks!
Fun fact: You can make `const copy = (text) => navigator.clipboard.write(text)` even shorter
`const copy = navigator.clipboard.write`
no need to wrap in another function that takes text and passes text to it.
That color generator is awesome!! Tyvm!
The only thing which I didn't know was 5:01, but it's good to revisit things once in a while, great video!
i love your music taste, super chill
I will make a shortcut of this video to my desktop. Thanks Ed.
The random color hex thing blew my mind!
`console.table(data)` at 11:45 very useful tip!
Super important to note that the Navigator.Clipboard API only works locally or in HTTPS. So if you want to make an insecure HTTP website, copying text won't work!
I guess that explains why it was not working for me on codepen. Sure, codepen does use HTTPS but i guess it has something to do with it... Because it is not working at all on codepen
Why is that super important you nerd
This is definitely important, but it's also 2022, there are no excuses to not have an SSL certificate on your website.
0:47 Design Mode - awesome feature, I like it!
Almost all rest poor, because it is something like part of ECMA standards.
Also last one looks impressive.
Good job, man, anyway! Thank you!
After CSS one-liners, now this = New Subscriber here :)
We love you, Ed. Just wanted to let you know that.
did he just say "g" when going through the hexadecimal characters at 7:20 lmao
aspiring fan here... i allready new this, but i kinda forgot the other so thanks for the reminder
That merge one liner is great is for interviews
Ed called me friend👌🏻 Life complete, haha,
These videos are actually golden, keep it up
Cool! I like the screen capturing
thanks for the tutorial Ed Helms.
Ed can u please tell mr what monitor are you using? Looks amazing.
Very fun video, it brings me joy that I knew almost 5 of them.
this man is pure positive energy, lovely human being :)
Thanks a lot bro. awaiting for more videos from you.
Really coool video 🔥🔥🔥
Cool setup as well 😊
By the way, please tell me the model of your monitor, it looks dope
The design mode one was very helpful, the rest are also helpful but it's just regular es6 stuff.
// SuerySelector ..............................................
function Selector(selector) {return document.querySelector(selector)}
// QuerySelectorAll ..............................................
function SelectorAll(selector) {return document.querySelectorAll(selector)}
With this code, you can call any element in an easy and short way
Example:
let Element = Selector('Target_Element') // return Element
or
let Element = SelectorAll('Target_Element') // Return Array Of Element
Nice video, I like the way you explain. Nice work dude.
I legit thought this was gonna be a video about Javascript jokes
transitionend is amazing thank you
designMode extremely blows my mind. Great content !
Nice video, Blender in combination with Babylon js would be awesome. Not many people make tutorials about Babylon js while it is a great 3D engine for in the browser
Very nice vid Ed! 🚀 That monitor at the beginning, is it Dell? Can you tell me the type? 😊 Cheers!
Man transitionend will save me tons of time!!!!
Grateful for this video 🤝
Very useful thanks for sharing
Hi ed .
I wont to ask you from were you have learned data structure and algorithm?
Thank you ed for your courses🌺❤️❤️
Your tutorials are always so engaging and easy to follow 🔥🔥🔥
he claims to be using the palenight theme, but here hes using the Community material theme ocean high contrast... you're welcome
the 70's prono music in the background makes the video
9:22 or you just set the visibility to hidden aswell. This will not transition by itself, so you'll still need opacity, but it will change the value once the transition is done.
Setting visibility to hidden will disable pointer events on the element, but other elements in the DOM will be affected by its positioning (unless it's set to an absolute or fixed position). To keep the element on the page, you should set it to "display: none;" so that way it will not affect the layout of other DOM elements and be removed from visibility.
thank you for this video, you are awesome!!
Hey man, you're videos great as always, do you consider making a video about javascript road map?
Hey ED :) ! I saw in one of your other video that you had a vs code theme with a gradient up in the title bar in one of your recent videos and i thought it looked SO cool that i figured out how to do it myself :D ... But now you dont have it anymore i see .
i used the "Custom CSS and JS loader" vs code extension and then custom CSS to color the different elements of vs code :)
I cant post a screenshot of my vs code .. Cuz youtube deletes the comment but yeah , could be cool to see a video on that .
The designmode one is super helpful while designing sites
who would have thought...
Thanks! By the way, what is theme color name ?
Thank You Ed This Is Realy Amazing
2:45 you aren't merging two arrays, what you're doing is concatenation. Merging two arrays is more like a zip operation.
Loop over one and and use the current index to get the corresponding element in the other array, then combine both values as a tuple, or whatever structure you need.
concat() is another way to merge arrays: arr1.concat(arr2);
Retaining only unique values: [...new Set(arr1.concat(arr2))];
This is really great! Thanks for this content Ed! 🚀
The extraction is very useful for any Async call
The official name is destructuring, just in case you want to look it up
Really nice video, Ed!
Ur my best teacher 💜
Gracias querido por estos tips; hace mucho no programaba ni lo más mínimo en js y me voy desactualizando, pero aquí aprendí nuevas funciones y demás
Love the new video quality 😍😁
Awesome! I knew all of them but what was the last one? Didn't know about it
JSON.stringify(data,null,2)
Technically you can do anything in one line in JavaScript xD
I did that for a test and my teacher wasn't very pleased, but I got my passing grade
👍 great content - thanks so much !
👍 no floating presenter head
👍 video and audio quality
👍 larger ide font size
👎 (imho) loud, distracting "music"
Doesn't generate colors have an issues with missing leading zeroes in numbers less than 0x100000?
I don’t know how many years Ed has been calling me a gorgeous friend on the internet 😂
Always good content, you're the best
deved numbah one 👑
Really good video ❤
Love your energy 👍
thank you very much 🙌
I like the console.table command.
I like your energy, friend
This is a good one.
This man a little dr crazy looking . Dude thank you.
You're crazy. I love u💚( as instructor)😅💪💪💪
What is the lens you used for recording this video?
It's short just fiery content!!!
Thanks for this hacks 😉
For merging arrays, concat is easier to read.
You remind me of the guy in Camera Conspiracies
console.table is super cool!!
More videos like this please
Nice video! :D Maybe name the "roll the dice" to "flip the coin" since you made it just 2 sided hehe 😜 But keep up the good work nonetheless
Hello plz I m looking for a function or whatever that can help me find list of printers installed on my machine. Thanks lot for your videos
what is your monitor please?
Beard look great Ed ☺️
These are handy one liners, but it worth pointing out most of them are using the web API, not pure JavaScript. 😅
Good Things devEd mawa
Very good
You make me smile
What vscode theme are you using in this video?
he claims to be using the palenight theme, but here hes using the Community material theme ocean high contrast... you're welcome
@@Mwtorres89 thanks 🙏🏻
Hi, how are you? I have a question. How to implement animation in Figma on the web-site? I can't find a solution on the internet
What's you display brand & model?
I knew designMode, the extraction (because I use a module that imports like that), the clipboard one, transitionend, the short if statements (i use those a lot too!), console.table, and the screen capture.
I knew like 70% of those, but still good video
Who asked?
@@Feavy Who asked you to say that?
#4 is called "destructuring," not "extraction."
2nd Boolean(Math.round(Math.random()))
maybe its better to set the transitionend event inside the click event and set it to once: true