5 Must Know JavaScript Features That Almost Nobody Knows

  Рет қаралды 471,600

Web Dev Simplified

Web Dev Simplified

Күн бұрын

🚨 IMPORTANT:
JavaScript Simplified Course: javascriptsimplified.com
JavaScript is a vast language with tons of features and it is impossible to know them all. In this video I will be covering 5 features in JavaScript that nobody knows but are incredibly useful.
📚 Materials/References:
Web Dev Roadmap: webdevsimplified.com/web-dev-...
Nullish Coalescing Article: blog.webdevsimplified.com/202...
Optional Chaining Article: blog.webdevsimplified.com/202...
Object Shorthand Article: blog.webdevsimplified.com/202...
Async Vs Defer Loading Video: • What Is The Fastest Wa...
Async Vs Defer Loading Article: blog.webdevsimplified.com/201...
🌎 Find Me Here:
My Blog: blog.webdevsimplified.com
My Courses: courses.webdevsimplified.com
Patreon: / webdevsimplified
Twitter: / devsimplified
Discord: / discord
GitHub: github.com/WebDevSimplified
CodePen: codepen.io/WebDevSimplified
⏱️ Timestamps:
00:00 - Introduction
00:41 - Nullish Coalescing
04:37 - Styling Console Log
06:19 - Optional Chaining
12:45 - Object Shorthand
14:55 - Defer/Async Loading
#JSTips #WDS #Top5JS

Пікірлер: 951
@JasonBoyce
@JasonBoyce 3 жыл бұрын
The person?.address?.street is going to save me SO MUCH time in React
@neuralwarp
@neuralwarp 3 жыл бұрын
Or you could just use your classes and datatypes correctly.
@suspendedchaos
@suspendedchaos 2 жыл бұрын
@@neuralwarp yeah why use a feature that saves times
@vikivarun6122
@vikivarun6122 2 жыл бұрын
Yea for me also
@vishal_kr_vishwakarma
@vishal_kr_vishwakarma 2 жыл бұрын
I love you `?.`
@arunaravind6154
@arunaravind6154 2 жыл бұрын
As dangerous as using 'goto' in a high level language. Almost all of these will cause hard to debug bugs sooner or later . Just use a strongly typed alternative.
@dealloc
@dealloc 3 жыл бұрын
For the first one, just use default assignment for the arguments (e.g. `calculate(taxes = 0.05, description = "Default item")` - This only uses the default value if the value is `undefined` and not for `null`, which may be want you want for most cases, given the difference of meaning that they have, rather than treating them the same. This avoids a lot of unexpected behaviors and is more likely to throw type errors or invalid values at you so you can find and correct it quicker. You can also use object destructuring in arguments with default values, like `calculate({ price = 0.05, description = "Default item" } = {})`. Default assignment makes it more readable and behave more consistent with ECMAScript norms with regards to undefined/null values.
@Keyacom
@Keyacom Жыл бұрын
The problem with the first way is that, according to the ECMAScript spec, a SyntaxError will be thrown if the function body has a "use strict" directive.
@miggu
@miggu 6 ай бұрын
I am still surprised at how underused destructuring is everywhere in javascript today in favour of dot notation. I never understood why it never caught on. product.title, product.price? does that help with the readability or is it useless repetition.
@73dines
@73dines 3 жыл бұрын
03:05 Kyle: you're not use to see question marks in javaScript Ternary operators: are we jokes to you? :D
@gdolphy
@gdolphy 3 жыл бұрын
X = (assert something) ? Val1 : (assertion 2) ? Val2 : val3;
@lexnastin9011
@lexnastin9011 3 жыл бұрын
yes,,, so true!
@lorddoomer7271
@lorddoomer7271 3 жыл бұрын
This ?? thingies is amazing...
@Glendragon
@Glendragon 3 жыл бұрын
and its basically a ternary operation. object ?? val1 looks very similar to object? (as in, does it exist) ? val1 : val2
@deViant14
@deViant14 3 жыл бұрын
language = 'Python' if is_readable else 'Javascript'
@SergeyNeskhodovskiy
@SergeyNeskhodovskiy 2 жыл бұрын
13:40 it's striking through "name" because it assumes you're writing for a browser and the "name" property exists in the global scope (on the "window" object). It's trying to save you from confusion, although AFAIK this doesn't in fact create any problems.
@a_maxed_out_handle_of_30_chars
@a_maxed_out_handle_of_30_chars Жыл бұрын
thank you :)
@Ayomikun
@Ayomikun 3 жыл бұрын
Even when I think I already know this stuff, I always learn something new. Had no idea you could use optional chaining with functions and arrays, though I'm not a huge fan of how it looks 😅
@Rogue_Art
@Rogue_Art 3 жыл бұрын
I'm surprised he didn't put it in the video, but console.dir() is another great feature. Makes it super easy to see heavily nested JSON in the terminal
@Ayomikun
@Ayomikun 3 жыл бұрын
@@Rogue_Art Oh interesting, I'll be giving that a go!
@SirusStarTV
@SirusStarTV 3 жыл бұрын
Lol, same thoughts. I thought there would be some new syntax for function call like that: function?() or array index array?[571]
@SirusStarTV
@SirusStarTV 3 жыл бұрын
And I don't like private property syntax like #privateProp, "private" keyword or _privateProp would be much better
@NM-vi5pf
@NM-vi5pf 2 жыл бұрын
@@SirusStarTV execution function by "function()" is just a sugar syntax for "function.call(thisArg, args)" so it's quite the same as with object properties "function?.call(thisArg, args)" -> "function?.()"
@quickcodingtuts
@quickcodingtuts 3 жыл бұрын
The console log styling blew my mind. You learn something new every day I guess...
@MrBroady02
@MrBroady02 3 жыл бұрын
I found out when I opened devtools in facebook, they had a warning not to paste any malicious code into the console.
@darxoonwasser
@darxoonwasser 3 жыл бұрын
@@MrBroady02 Same with discord but I didn't know how it was done
@Manny-mc3rx
@Manny-mc3rx 3 жыл бұрын
Does he have a full JavaScript course on udemy? If so can someone pls help me with a link or his name on udemy?
@darxoonwasser
@darxoonwasser 3 жыл бұрын
@@Manny-mc3rx I don't think so but on fireship.io
@Levi_OP
@Levi_OP 3 жыл бұрын
Another cool thing you can look up is that you can put images in the chrome console
@KeganVanSickle
@KeganVanSickle 3 жыл бұрын
I'm proud to say that I knew and use these features nearly every day. Great video Kyle, I really like your channel!
@antoineassaf7508
@antoineassaf7508 Жыл бұрын
Same here!
@reyanrahman
@reyanrahman 3 жыл бұрын
U can't imagine how happy I am knowing that I already know and use all these features except the console styling thank you so much I have learned a lot from ur channel
@christianalejandro4963
@christianalejandro4963 3 жыл бұрын
Felt the same thing. Console.log styling was jaw dropping.
@subhashbeniwal4973
@subhashbeniwal4973 3 жыл бұрын
same
@christianalejandro4963
@christianalejandro4963 3 жыл бұрын
I have to add that I still haven't used it :P
@valethemajor
@valethemajor 2 жыл бұрын
Same boat. I was aware of it though because many sites like discord will spam styled logs to get people from not using the devtools if they're not tech savvy.
@tech-andgar
@tech-andgar 3 жыл бұрын
Summary: Nullish Coalescing: c = a || b; /=>/ c = a ?? b; Styling Console Log: console.log(var, CSS_1, CSS_2 ); // CSS_1: 'font-weight: bold; color: red', CSS_2: 'color: green' Optional Chaining: console.log(obj?.existMethodOrProp); Object Shorthand: a=1; b=2; const obj = {a, b}; console.log(obj) // {a:1, b:2} Defer/Async Loading: // download js, awaiting download html and execute js
@miklov
@miklov 3 жыл бұрын
I have to admit, I thought it would be mostly things I was familiar with but I wanted to make sure so I gave it a watch. All five items were new to me! Teaching me both ES and to not make assumptions about my current knowledge. Thank you!
@luisegea4954
@luisegea4954 3 жыл бұрын
Came for optional chaining and ended up staying for the full suite. All super valuable, great work and thank you!
@MiSt3300
@MiSt3300 3 жыл бұрын
Wow the console log styling is going to be helpful, and adding that '?' check before accessing a variable of something really saved me. Thanks so much Kyle!!
@yousufkhan2909
@yousufkhan2909 3 жыл бұрын
never seen or heard styling console log before. you are gem.
@ricko13
@ricko13 3 жыл бұрын
useless but ok
@justnathan7155
@justnathan7155 3 жыл бұрын
@@ricko13 color coding
@spartaboss8387
@spartaboss8387 3 жыл бұрын
@@ricko13 vbvlhbbvvbbvkbgvphvbbbb)))?:-::;::?--?-;;:::;::::-::;;::::?-?-::-:;::;:::?(-?0:?)-)-??);::(;;:--:-:;-;:;;::;-?::/;;:-;:;-:?:?-)!?;??;?)?))????-?:;-:-)-:-:);;--::-:!:;::::::::::(;--:;)--:!: Vmlbvbbvvmgggklgbgvvvvbhgvvgbnbbvvvvkvvvg Gggvkvvvvphglbgvlbmmmmmvlhvvlvkmjvvvbmbbvvgvvhkvvgvhvgbggbbvvbvbbgvvvmvvklmmkvkggbgvgvvgvvbpvvgvghvvv Bvmvgjvggkggvhhh Bbvbvvvvb CclvnmgvgvvvpvvgvgggmvvvvbggvvvgpmkgvvbkkvbmmllmnblkglhbbvkvvvvvmgggvvvvvgbvngvvbgvvvbxvmvmkmbvvlvvbvvbvvvgvgbvgbvvbvvhvbvvvhgvvbvvpvgvbvgbvbbvvlfkkmmmmllkmmhbgvbhbbvmvbvgbgvvbvhggvvbbvvbbgvgvvmghmbvmbggmmHvlkklhmvhvjvvbbbbvvvgvmvbvhvggvvgvvpbvgpbvmvgvvmgmbmkvgkmmmmkmvvhbvvbcvvggvgvvvbvvvvvvbvbbgvcvvvvvvvvvvmvvbgvvbvmvblmlmhmkmmmvlmmkmmmlvvvgmgvhvvkvbvvbghvbvvvvmggvbvbvgvvvvbvvggvvvmpvvmvvhvvvgkmhlkbmmmmxpmkmclbgggg Gbvvvvvnbbgvbvvgbgvvvvvvvgvgvhkgvvmvpvpvbbmkbmmvvmmmlmlmmmmlvlhbvvhvbvkgvvvvbhvgppvvbvggpvbvbgbvmhggckvbvmvmvvvkgvpmvvgvvhkckkkvmmvkvmmkvvmvbvvvvvgbvnbgvvggvvhbbgvbvvvbhmlbbvbghvkvggpgvbvkgvpgbhbghbhmlgmlmmlvvvgvvvvbvhvvvvvvvvhvvgv bvbvvvvvpkvmgvmmlmvhhbvvhbbvVgbvvbvvvbbvvbbvbbbmhvgbvvvbbmhbpmlglkgmvvbvbbvvvgbbvbbvvbvvhvvmbvvhpvbbkg Gbmvhvhgkmmmmlklgvbvvlgvvbvbvvvvvvvvvvvvmpvgvvcbbnjkmkmkhbmmmmmbvkvvnmbvvvvvvggvggvvvvvppbbbcvhmmmmlkbbbbvbhbgvmvbmvvvhvbbvmvkbmmmmvbpvvlggvvvvvvvvbvgvm bvmvmvpbknkvmbmmmlmmmmccbvhvbbvvbmvb Bgvvpvvbpgvvpbbvv Hmv Mkbmvvglcmvpgvph Gvv Ggvbvvvvgmvvvvgvgvvvjvpvgpvgvvgvvvgmhg lkmvmlmvgvbvv bb bb bb bb bb bb bb v Vgbvggkvvvbvpv
@imagineeelego
@imagineeelego 3 жыл бұрын
ive seen it, if you load pixi js in your project you will see a cool box in your console
@mikethegamedev
@mikethegamedev 3 жыл бұрын
@@spartaboss8387 ??????
@bradchellingworth5973
@bradchellingworth5973 3 жыл бұрын
When I discovered optional chaining in Ruby a few years ago it literally changed my life. So happy to see it eventually made it to JS
@nathanbustamante1525
@nathanbustamante1525 3 жыл бұрын
Optional chaining is exactly what I needed. Been struggling with a desktop app breaking because we were getting unexpected nulls. Thank you!
@emmettdja
@emmettdja Жыл бұрын
All of these tricks were incredible... hats off! Thanks for spreading a little wisdom over us all! These were all pretty neat tricks I can see myself using in the future. Can't wait for more!
@cheat200
@cheat200 3 жыл бұрын
You might run into some "Edge" cases... Nice one!
@puspamadak
@puspamadak 3 жыл бұрын
🤣
@nikhilmwarrier7948
@nikhilmwarrier7948 3 жыл бұрын
One of the best puns I've heard in a long time...
@multiwebinc
@multiwebinc 3 жыл бұрын
If you're a React developer, note that Babel 7.8.0+ supports the new ECMAScript 2020 features by default, which includes nullish coalescing (??) and optional chaining (?.). So you can use them in your project without worrying about legacy browser support.
@sudarshankj
@sudarshankj 3 жыл бұрын
Very clear explanation! Thank you. Nullish Coalescing and Optional Chaining, my 2 new tools ✌🏼
@md.siddiq7165
@md.siddiq7165 3 жыл бұрын
Thanks Kyle. Loved the video. That optional chaining is awesome ❤️
@coolworx
@coolworx Жыл бұрын
13:30 This is really good to use if you need to build deeply nested complex objects (maybe to turn into JSON). You can build it inside out by building the inner most objects, then just including them in their parent, all the way up to the root element. Much more readable and flexible as every sub-object has a reference, and you avoid the Xmas tree of deep nesting.
@zraakuladann3946
@zraakuladann3946 3 жыл бұрын
For someone who comes from C++ & Java: You skipping semicolon hurts me deeply.
@vizzy4652
@vizzy4652 3 жыл бұрын
It still hurts me even though I started with js
@TheNewton
@TheNewton 3 жыл бұрын
Javascript has automatic semicolon insertion, not foolproof.
@aravindmuthu95
@aravindmuthu95 3 жыл бұрын
@@TheNewton That's the code editor extension, JS totally works without the semi
@jsonkody
@jsonkody 3 жыл бұрын
Actually semicolons are fkng redundant trash. By using them you do the machines work. If you write all your code on one line you MAY write them so the code work but then you probably shouldn't write any code at all.
@jsonkody
@jsonkody 3 жыл бұрын
Look at Golang. Even Ken Thompson realized this deep truth ;)
@ananwolf
@ananwolf 3 жыл бұрын
I’m a beginner in JavaScript and enrolled in boot camp so watching your videos are super awesome and cool! Subscribed!
@ronidey7100
@ronidey7100 3 жыл бұрын
Thank you so much for letting me know about the optional chaining 👍❤️
@kosemekars
@kosemekars 3 жыл бұрын
Optional chaining saved my life numerous times.
@AdADglgmutShevanel
@AdADglgmutShevanel 3 жыл бұрын
I'm going to have the most beautiful console logs from here on out
@graemekalb2292
@graemekalb2292 3 жыл бұрын
Needed the nullish coalescing operator today and immediately thought of this! Thank you
@moiraleon8744
@moiraleon8744 2 жыл бұрын
These are so helpful and wonderfully explained. Thank you so much!
@keydib8913
@keydib8913 3 жыл бұрын
Am I the only one who is this excited every time he release new videos
@MuhammadAdnan2.0
@MuhammadAdnan2.0 3 жыл бұрын
Maybe...
@BO-nn9up
@BO-nn9up 3 жыл бұрын
here same from Korea
@eseseis7251
@eseseis7251 3 жыл бұрын
Keydi, you need something, something you got the illusion you r getting with each video
@keydib8913
@keydib8913 3 жыл бұрын
Ese like what?
@domination3428
@domination3428 3 жыл бұрын
@@keydib8913 Yes, because you are girl and we are not gays =)
@novailoveyou
@novailoveyou 2 жыл бұрын
Thanks for showing those! Optional chaining looks really interesting to me however I have so many question on what are the caveats like How does it affect debugging? Because previously JS would tell you what went wrong and throw an error, and now it'd just go through and you might not even know something went wrong. I can see this being a huge debugging issue How does it work under the hood? Does it just do a regular if(!null && !undefined) check for you right in place where you did ?. or does it work somehow differently? What are performance hits on this? Does it slow down our code and if yes then how bad? What are the benefits of using this with TypeScript if there are? Would be great to have answers on those, I'm going to research
@lucytran422
@lucytran422 2 жыл бұрын
Your passion for web development is really contagious, Kyle! Just randomly watching your videos and I already love JS :)
@oldclient
@oldclient 3 жыл бұрын
Project C# was designed to mimic Java. Over the years the language evolved so much that I see almost every modern language is using many C# ideas, like: 1. Lambda expressions = Arrow functions; 2. WPF Grid ~= CSS Grid; 3. TPL Lib/Async = Async/Await in JS; 3. Syntactic sugar = the stuff mentioned in your blog and more. Now, in my opinion, is time to add another ultimate C# technique - pattern matching, like: if (kyle is Person person && person.address != null){ //we have the assign and check in one expression person.print(); printPersonStreet(person); }
@noctislupo93
@noctislupo93 3 жыл бұрын
There are at least 2 errors in the video: - ?.() doesn't check if is a function - ?.[] don't check if is an Array. The ?. operator only checks null and undefined
@ubermenschfallschirmjager7184
@ubermenschfallschirmjager7184 3 жыл бұрын
Nice catch. You have a sharp mind!
@nikhilmwarrier7948
@nikhilmwarrier7948 3 жыл бұрын
Yep. It's a nullish coalescing operator for methods
@noctislupo93
@noctislupo93 3 жыл бұрын
@Michał Kasprzak this is because until JS3/4 (I'm not sure of the version name) there was no difference between array and object. Array was only object with numeric index, and not a different type
@KlausHott
@KlausHott 2 жыл бұрын
CoffeeScript did this back in the day
@altansipdrae2759
@altansipdrae2759 2 жыл бұрын
@@noctislupo93 aren't they still very similar? you can still access an object attribute using brackets [], like it was an array of key => value, keys being string. I use that a lot to access object attribute dynamically through the use of a string function parameter
@yksnidog
@yksnidog 3 жыл бұрын
"name" is a javascript keyword. That's why you shouldn't use it as a name ("identifier") for a variable. It is an attribute of functions which holds (Surprise, surprise!) the name of this function. So the command Func1.name will give you Func1 if Func1 is a function... Also it can be useful when used aside set, get, bind or classes.
@j0code
@j0code 3 жыл бұрын
function names are written in lower case, not Upper Case. (unless it's an object constructor)
@yksnidog
@yksnidog 3 жыл бұрын
@@j0code Yes and how you write it is said by a table of stone. In germany we write names and things in upper case (which is in english by the way not written upper case itself). I know we are not the entire world but it is the natural behavior all around me. And surprise again: Func1 will work. It worked in Netscape Navigator, Mozilla Browser, Firefox and now in Chrome. We can make things complicated or use the time for the better good, shouldn't we?
@SealedKiller
@SealedKiller 2 жыл бұрын
It's not really a keyword. It's just a property of the function. The reason it's crossed out is because it's a global variable in the browser that's a property of the window object.
@yksnidog
@yksnidog 2 жыл бұрын
@@SealedKiller a keyword is a word crossed out because it is used. So why exactly is a property identifier not a keyword? 8-)
@SealedKiller
@SealedKiller 2 жыл бұрын
@@yksnidog Because it's a global variable that's used by the window object. When you assign something to the variable 'name' it assigns it to window.name. It's not a keyword, it's not reserved. It's just an identifier.
@shantanu0707
@shantanu0707 3 жыл бұрын
I really needed that Optional Chaining for a React project I'm doing. Blew my mind.
@aelfar7533
@aelfar7533 3 жыл бұрын
Wow, amazing job bringing us these features, love them lots. Thanks! I'm still waiting for Master of Puppets guitar shredding haha. Keep it up, we love you man!
@NecaVideo
@NecaVideo 2 жыл бұрын
One more thing that you forgot to mentioned is the shorthand for casting string to number. let price = '0.05'; price = +price; now price has number type. It's useful sometimes.
@BostYT
@BostYT Жыл бұрын
I use price = Number(price)
@messerjack8559
@messerjack8559 Жыл бұрын
this also works :P price = '0.05' * 1. Because you can not multiply a string, JS now it must be integer
@alekhshah32
@alekhshah32 3 жыл бұрын
Dude this is amazing. This helps make me write clean, error-free code with so much more confidence. Thanks for such great content.
@borisjaulmes5773
@borisjaulmes5773 2 жыл бұрын
Nullish coalescing and Optional chaining are just Killer-features. This video is a blessing. Thank you !
@juniordantas02
@juniordantas02 3 жыл бұрын
I thought it was going to be a useless video with stuff I already know. But it turns out most of the features in the video it could have helped me solve problems right yesterday. Thank you so much.
@walterlol
@walterlol 3 жыл бұрын
You could just do a default assignment with the first example. That's the cleanest way.
@yashchauhan5710
@yashchauhan5710 3 жыл бұрын
But that won't do a check I guess
@Champagnerushi
@Champagnerushi 3 жыл бұрын
Default assignment will only assign for undefined, not nulls
@walterlol
@walterlol 3 жыл бұрын
@@Champagnerushi I know. But he is not using null.
@Solodam
@Solodam 3 жыл бұрын
default assignments are "undefined"... And if you do set a default value yourself, VSCode will let you know what type is expected if you arent using typescript. so if you create something like function test ( arg = [] ) {}; VSCode will tell you that arg is expected to be an array.
@gyuriteso
@gyuriteso 3 жыл бұрын
Can you add the information about the ECMAScript versions when each of the mentioned possibilities became available please?
@nativeKar
@nativeKar 3 жыл бұрын
Hey Kyle, love your content. These videos help me so much not only during my day-to-day job but also at some interviews. Can you please (pretty please) make some redux related videos?
@misterl8129
@misterl8129 3 жыл бұрын
defer was the mindblowing for me, thank you!
@hadipawar2539
@hadipawar2539 3 жыл бұрын
I recently discovered optional chaining and my God my life is so easy now.
@AP-pm9qy
@AP-pm9qy 3 жыл бұрын
I saw the thumbnail of isCrazy() and I was fully prepared to see a function called that. Nothing surprises me in JS anymore.
@Tommy-jn9ps
@Tommy-jn9ps 3 жыл бұрын
Kyle we need a story telling video or a debating video like the fang one. I really enjoy those.
@chukwumaohuabunwa
@chukwumaohuabunwa 3 жыл бұрын
I am grateful that you decided to teach web development. I learn something new and cool every time. Thank you and God bless.
@vquilon
@vquilon 3 жыл бұрын
Why dont use parameters default value on function signature?, I mean is like python kwargs but in javascript you can assign a default value if not passed
@can_pacis
@can_pacis 3 жыл бұрын
That's just the way he presented it, you can use it anywhere with any variable not just function parameters.
@MatthewWeiler1984
@MatthewWeiler1984 2 жыл бұрын
​@@can_pacis That's not what @vmalvoq meant. He meant why not just use default parameter values. function calculateCost( itemCost, taxRate = 0.05, itemName = 'unknown item' ) { const totalCost = itemCost * (1 + taxRate); console.log(itemName + ' costs $' + totalCost); } The main difference is that the default parameter value is only used if the parameter value is undefined. In my above example function, if the taxRate or itemName are null, the default value on the parameter will not be used. > calculateCost(100, 0.07, 'my item'); > my item costs $107 > > calculateCost(100, undefined, undefined); > unknown item costs $105 > > calculateCost(100, undefined, ''); > costs $105 > > calculateCost(100, null, null); > null costs $100
@can_pacis
@can_pacis 2 жыл бұрын
@@MatthewWeiler1984 I can't exactly remember what I was talking about and I just don't want to rewatch this video but it looks like you are right, I'm not sure. If so, thanks for correcting and have a good day
@Gastell0
@Gastell0 3 жыл бұрын
This is great, but absence of semicolons bothers me deeply xD
@gosnooky
@gosnooky 3 жыл бұрын
Semicolons are trash
@kirillvoloshin2065
@kirillvoloshin2065 3 жыл бұрын
wow, I really run into the problem of undefined objects all the time! Thank you for the video!
@adam.foster
@adam.foster 3 жыл бұрын
Love your knowledge - great tips!
@kuroexmachina
@kuroexmachina 3 жыл бұрын
oh damn optional chaining is finally out tbh just use typescript
@arnerademacker
@arnerademacker 3 жыл бұрын
Or maybe don't.
@arnerademacker
@arnerademacker 3 жыл бұрын
​@AngryJoeIsRacist Super Racist Typescript is not an easier version of JavaScript. It's a superset of JavaScript, meaning all JavaScript is valid Typescript. I'd argue you shouldn't use Typescript until you have understood why you are using it and how vanilla JavaScript approaches the same issues. Because otherwise you're adding a lot of complexity and overhead for no reason.
@arnerademacker
@arnerademacker 3 жыл бұрын
​@AngryJoeIsRacist Super Racist You said - and stop me if I quote you incorrectly here - "you can make life harder on yourself" in response to my statement to "perhaps [not use Typescript]". Implying - and I will use simple deduction here, stop me if you have trouble following - that somehow there is an added cost to using Vanilla JS. I made arguments as to why that isn't the case. 1) JavaScript is easier. Which you just agreed on. So that's not the added cost. 2) JavaScript is valid TypeScript. A vast majority of issues you encounter in Vanilla JS you encounter in TypeScript. That's why it's relevant that TypeScript is a superset. (And comparing programming languages that literally contain the exact same vocabulary and grammar to spoken languages that do not is a false equivalent. But I'm guessing you know that.) So more issues in Vanilla JS is also not the added cost. 3) Typescript adds overhead and complexity, because it adds additional grammar (that's the complexity part) and requires you to use a lot of the additional grammar to get a use out of Typescript (that's the overhead part). That would mean Vanilla JS is both lower in complexity and lower in overhead. So that's not the added cost. Now that I have cleared that up for you, since apparently that was necessary, please, enlighten us as to why Typescript is supposed to "make life easier" instead of flailing at my comment line by line but provide no arguments of your own.
@arnerademacker
@arnerademacker 3 жыл бұрын
​@AngryJoeIsRacist Super Racist See, now you're actually making arguments. Thank you. That's all I wanted.
@webster.
@webster. 3 жыл бұрын
All features are same as in C#
@83hjf
@83hjf 3 жыл бұрын
i miss linq
@bibi2900
@bibi2900 3 жыл бұрын
You mean “stolen from c#”. In next js edition: “this” is “this” and not some random sh**.
@95jugal
@95jugal 3 жыл бұрын
Thanks for sharing these new features. Please keep creating such informative videos. 👍🏼
@capm_diealone
@capm_diealone 7 ай бұрын
These are great tips that a lot of experienced devs are very familiar with, so it’s great to present them to those that are newer to JS. I will say though that I’ve watched a few of you videos, and the fact that you don’t terminate your lines with a semicolon drives me absolutely up a wall.
@joshr3739
@joshr3739 3 жыл бұрын
As an FYI, from the Mozilla docs: "If there is a property with such a name and which is not a function, using ?. will still raise a TypeError exception" - basically if you do kyle.print?.() and print exists in the object but is not a function it will throw an error.
@foxjonesofficial
@foxjonesofficial 3 жыл бұрын
٠
@foxjonesofficial
@foxjonesofficial 3 жыл бұрын
Empty lol
@Ryan86me
@Ryan86me 3 жыл бұрын
function calculatePrice(price, taxes = 0.05, description = "Default item") {
@aashiqahmed5273
@aashiqahmed5273 3 жыл бұрын
yup, default props,but it does not works for null or empty values
@dealloc
@dealloc 3 жыл бұрын
@@aashiqahmed5273 Which I'd argue is a good thing. Null shouldn't be treated as `undefined`. They are inherently different things and should often be treated as such. Passing null into places will show you that something is incorrect much faster than replacing it with a default value.
@can_pacis
@can_pacis 3 жыл бұрын
@@aashiqahmed5273 they are not props they are parameters
@deemon710
@deemon710 2 жыл бұрын
As a novice to Javascript, these tips are amazing. I'm especially fond of being able to apply css to console logs!
@Linuxdirk
@Linuxdirk 10 ай бұрын
I love the nullish coalescing operator. I already used it in production multiple times to replace pretty much all of the "workaround code".
@shr1han
@shr1han 3 жыл бұрын
Woah, I knew all of those! 🎉
@fredi1505
@fredi1505 3 жыл бұрын
What I understood was if you run into errors in javascript just throw in a '?'
@mohammadsamra2068
@mohammadsamra2068 2 жыл бұрын
we really know a comprehensive video to show us all the hacks tips and features that will make our js code short clean and robust. Great Video!
@BarrettGamingHD
@BarrettGamingHD 3 жыл бұрын
Really cool to see the optional chaining operator out of the box with JavaScript now, very useful
@Hearrok
@Hearrok 3 жыл бұрын
Video: "New features in JS..." Me: Yeah... I'm stuck in working with ES5 in corporations :/
@KinSlay1337
@KinSlay1337 3 жыл бұрын
Transpile with babel
@Hearrok
@Hearrok 3 жыл бұрын
@@KinSlay1337 unfortunately it creates less readable and maintainable code for the person that might need to update something in the future :( So even if it technically works, it's not acceptable for maintainability.
@KinSlay1337
@KinSlay1337 3 жыл бұрын
@@Hearrok you can always keep the untranspiled code to be maintained but I guess people where you work are too set on old practices if it's not an option
@Hearrok
@Hearrok 3 жыл бұрын
@@KinSlay1337 It's not the people it's the system engine interpreters that can't handle higher versions. Also having two copies of the same code but in different versions would add even more complexity to everything. It's not that hard to just write code with older styles. It's just that it would be nice to have things like arrow functions x)
@peybro
@peybro 3 жыл бұрын
Can't you just define default values in the function definition like this: calculatePrice(price, taxes=0.05, description="Default item") {....?
@reinieltredes8306
@reinieltredes8306 3 жыл бұрын
No
@peybro
@peybro 3 жыл бұрын
@@reinieltredes8306 ok thanks for that detailed explanation
@reinieltredes8306
@reinieltredes8306 3 жыл бұрын
I'm a beginner. I tried your sample and... It works. Thanks dude
@reinieltredes8306
@reinieltredes8306 3 жыл бұрын
@@KalmeMarqTG tried on pure js. It works too
@jennifershen4273
@jennifershen4273 3 жыл бұрын
Thanks man! This is super helpful!
@DEVDerr
@DEVDerr 3 жыл бұрын
In this nullish coalescing example - it is indeed good example to clearly show how does it work, but people please - in situations like this one, in commercial non-personal projects use default argument values instead. It will work completely the same, it's more readable and also provides you better developer experience by allowing you to check what the default value is by mouseover on function name in some IDE's like VSCode or WebStorm/PHPStorm, without needing to jump into the source code and analyzing where the heck the default value assign is
@arthurdewitte4521
@arthurdewitte4521 3 жыл бұрын
For the one with the default argument values, did you know you could just pass them like this? function calculatePrice(price, taxes = 0.5, description = "Default item") { ... } This will do the exact same but it will allow you to not even have to specify the last two arguments, as it will take the default value. For example, you could do this: calculatePrice(10); // which is valid but calculatePrice(10, 0.75); is also valid!
@BostYT
@BostYT Жыл бұрын
That's what I was thinking! His way is inefficient.
@Springfielde
@Springfielde 3 жыл бұрын
So we handle "undefined" by writing code that doesn't throw error for it... :D
@STRIPPEDSTAR
@STRIPPEDSTAR 3 жыл бұрын
This is awesome! Thanks Kyle!
@NicoHeinrich
@NicoHeinrich 3 жыл бұрын
This video is pure gold. Thanks so much!
@frmcf
@frmcf 3 жыл бұрын
6:45 Probably shouldn't have used your real address, Kyle...
@DaminGamerMC
@DaminGamerMC 3 жыл бұрын
I hate the && and || sintax because for me that should return a boolean like *taxes || 0.5* should return true or false
@skillzorskillsson8228
@skillzorskillsson8228 3 жыл бұрын
i knew it was possible to style the console.log messages since i have seen many websites with styling in the console. But i had no idea how to do it... And i am not sure why i have not looked it up. This is pretty awesome actually. I am very happy that you shared this !
@acodeman8677
@acodeman8677 3 жыл бұрын
some of these features are so amazing. Thanks, Man.
@narcissisticnarcissus4956
@narcissisticnarcissus4956 3 жыл бұрын
Instead of console.log(), I ofter use console.table(). So much cleaner.
@tochimclaren
@tochimclaren 3 жыл бұрын
Or console.dir to extract info
@valdoimpalatorez
@valdoimpalatorez 3 жыл бұрын
Stealing solutions from C# I see. :D
@cryptodapps3340
@cryptodapps3340 3 жыл бұрын
I was about to say the same thing
@parahumanoid
@parahumanoid 2 жыл бұрын
new to optional chaining here. very expressive, love it. it's amazing how much ES has grown in the past 20 years in terms of its feature set. It was pretty good even back in the 2000s, once we hit a normal DOM and got away from the ugly Netscape and IE5 ways of doing things, but I could not guess it would become like this. Heck, I hear it even has monads now! after such a long time away it now seems endless as an ocean that I cannot be sure if I'll be ever to the end of. There used to be a time when you could "know" JS (ver 1.3 for example), but now one can probably speak only of some subset of it. Sort of like CSS too: that spec has grown so huge that it would be a full time job just staying on top of new features from day to day with no time left for actual development, heh!
@jaimeandrescarcamosepulved2456
@jaimeandrescarcamosepulved2456 Жыл бұрын
Awesome!! thank you. Taking notes.
@IronTeddyBear
@IronTeddyBear 3 жыл бұрын
We've had these newer syntaxes in C# for a while, it's nice to see JavaScript has it too.
@SamBIllium
@SamBIllium 2 жыл бұрын
Didn't know the console styling, or the 'defer' for script tags. Thanks! For people that don't know, you can also set default function parameters like this, which I believe works the the same way as the ?? approach (checks for null or undefined): function calculatePrice(price, taxes = 0.05, description = "Default Item") { const total = price * (1 + taxes); console.log(`${description} With Tax: $${total}`); }
@Wakedaddy87
@Wakedaddy87 9 ай бұрын
That optional chaining thing has been something that I have been trying to use, but ran into syntax issues. And this video showed me what I was doing wrong and I am definitely going to be fixing my code to use this now. Thanks!
@reesss4
@reesss4 Жыл бұрын
I watched this video few months ago and made am mental note of all the cool things you showed. Well today I had to use the Optional Chaining and it absolutely saved me big time! Thank you very much!!!
@sunilbehera7380
@sunilbehera7380 3 жыл бұрын
A lot of information in 18 mins. Truly Web Dev Simplified.
@AniaKovas
@AniaKovas 3 жыл бұрын
Handy, Thanks Kyle. Very clear explanations.
@bradley3030
@bradley3030 3 жыл бұрын
Been a web dev for nearely 20 years and most of these are new to me. (Granted most of them are newish features.) Real good to know and will save me a lot of time and effort. Going to sub for sure. The only one I knew was when I first used developer tools on Facebook. They used the console css feature to produce a very visible warning against copy and pasting third party code.
@user-fu6kf1yk2o
@user-fu6kf1yk2o 3 жыл бұрын
These "tricks" are awesome. I knew all of them, except... - Console Log Styling! ... This feature was really surprise for me. Thank u!
@xRichhhx
@xRichhhx 3 жыл бұрын
Just wanted to say that you put out great content!
@Andrimont
@Andrimont 3 жыл бұрын
If I knew this before I would save alot of time in my project Thank you for showing this
@AndreR241
@AndreR241 3 жыл бұрын
Nice to see, that all the nice features of c# finally got ported to JavaScript as well.
@astrit
@astrit 3 жыл бұрын
How do you even come up with this kind of content. Just brilliant 👌
@mshahzebraza
@mshahzebraza 2 жыл бұрын
Optional chaining was the best one. Keep posting the great content
@gngn2973
@gngn2973 3 жыл бұрын
I never finshed a project because of all the different cases the api would spit at me with json. this optional chaining thing is gonna finally let me finish it. Thanks alot for the video!
@MB-zj3er
@MB-zj3er Жыл бұрын
defer -- wow! Worth an entire video. How did I not know this? Thank you!! time to go delete a lot of load functions...🤦‍♂
@nabiismayilov2860
@nabiismayilov2860 3 жыл бұрын
Thanks, your videos are very helpful 👍🏻
@DT2324
@DT2324 3 жыл бұрын
Mind blowing tricks! Thanks for sharing!
@aaaa1339
@aaaa1339 3 жыл бұрын
Two thoughts on the first example: 1. If you want to set default values, you can do that in the parameter function foo(str = "default"). 2. If you have undefineds or nulls going into your function, you propably have a bigger problem in your overall design. Google design by contract
@excessreactant9045
@excessreactant9045 2 жыл бұрын
That defer tag is so cool!
@ericdimarzio5756
@ericdimarzio5756 11 ай бұрын
Thank you for such a great video!
5 MORE Must Know JavaScript Features That Almost Nobody Knows
18:05
Web Dev Simplified
Рет қаралды 178 М.
Another 5 Must Know JavaScript Features That Almost Nobody Knows
22:42
Web Dev Simplified
Рет қаралды 212 М.
النودلز هي دائماً الخيار الأفضل! #شورتس
00:10
The World's Fastest Cleaners
00:35
MrBeast
Рет қаралды 33 МЛН
LA FINE 😂😂😂 @arnaldomangini
00:26
Giuseppe Barbuto
Рет қаралды 14 МЛН
5+ Must Know HTML Tags That Almost Nobody Knows
15:33
Web Dev Simplified
Рет қаралды 611 М.
Junior Vs Senior Code - How To Write Better Code
22:13
Web Dev Simplified
Рет қаралды 1,1 МЛН
Before Your Next Interview Watch This
14:18
Web Dev Simplified
Рет қаралды 142 М.
Learn TypeScript Generics In 13 Minutes
12:52
Web Dev Simplified
Рет қаралды 188 М.
Learn DOM Manipulation In 18 Minutes
18:37
Web Dev Simplified
Рет қаралды 1 МЛН
21 Awesome Web Features you’re not using yet
8:31
Fireship
Рет қаралды 955 М.
Why Is Array/Object Destructuring So Useful And How To Use It
13:24
Web Dev Simplified
Рет қаралды 415 М.
Top 6 React Hook Mistakes Beginners Make
21:18
Web Dev Simplified
Рет қаралды 553 М.
20+ Must Know Array Methods That Almost Nobody Knows
11:47
Web Dev Simplified
Рет қаралды 86 М.
Learn JavaScript Event Listeners In 18 Minutes
18:03
Web Dev Simplified
Рет қаралды 557 М.
النودلز هي دائماً الخيار الأفضل! #شورتس
00:10