Тёмный

5 Must Know JavaScript Features That Almost Nobody Knows 

Web Dev Simplified
Подписаться 1,6 млн
Просмотров 473 тыс.
50% 1

🚨 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

Опубликовано:

 

1 июн 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 950   
@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 3 года назад
@@neuralwarp yeah why use a feature that saves times
@vikivarun6122
@vikivarun6122 3 года назад
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.
@C.Ezra.M
@C.Ezra.M Год назад
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 7 месяцев назад
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'
@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
@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
thank you :)
@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
@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?.()"
@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); }
@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.
@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 ;)
@kosemekars
@kosemekars 3 года назад
Optional chaining saved my life numerous times.
@luisegea4954
@luisegea4954 3 года назад
Came for optional chaining and ended up staying for the full suite. All super valuable, great work and thank you!
@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.
@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!
@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!
@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!!
@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!
@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
@md.siddiq7165
@md.siddiq7165 3 года назад
Thanks Kyle. Loved the video. That optional chaining is awesome ❤️
@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...
@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.
@sudarshankj
@sudarshankj 3 года назад
Very clear explanation! Thank you. Nullish Coalescing and Optional Chaining, my 2 new tools ✌🏼
@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!
@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 =)
@AdADglgmutShevanel
@AdADglgmutShevanel 3 года назад
I'm going to have the most beautiful console logs from here on out
@ananwolf
@ananwolf 3 года назад
I’m a beginner in JavaScript and enrolled in boot camp so watching your videos are super awesome and cool! Subscribed!
@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.
@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
@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
@RameenFallschirmjager
@RameenFallschirmjager 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 3 года назад
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
@ronidey7100
@ronidey7100 3 года назад
Thank you so much for letting me know about the optional chaining 👍❤️
@graemekalb2292
@graemekalb2292 3 года назад
Needed the nullish coalescing operator today and immediately thought of this! Thank you
@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.
@novailoveyou
@novailoveyou 3 года назад
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
@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
@moiraleon8744
@moiraleon8744 2 года назад
These are so helpful and wonderfully explained. Thank you so much!
@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.
@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.
@lucytran422
@lucytran422 2 года назад
Your passion for web development is really contagious, Kyle! Just randomly watching your videos and I already love JS :)
@shantanu0707
@shantanu0707 3 года назад
I really needed that Optional Chaining for a React project I'm doing. Blew my mind.
@Gastell0
@Gastell0 3 года назад
This is great, but absence of semicolons bothers me deeply xD
@gosnooky
@gosnooky 3 года назад
Semicolons are trash
@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.
@capm_diealone
@capm_diealone 8 месяцев назад
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.
@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!
@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
@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.
@borisjaulmes5773
@borisjaulmes5773 2 года назад
Nullish coalescing and Optional chaining are just Killer-features. This video is a blessing. Thank you !
@Wakedaddy87
@Wakedaddy87 10 месяцев назад
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!
@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.
@hadipawar2539
@hadipawar2539 3 года назад
I recently discovered optional chaining and my God my life is so easy now.
@Linuxdirk
@Linuxdirk 11 месяцев назад
I love the nullish coalescing operator. I already used it in production multiple times to replace pretty much all of the "workaround code".
@reesss4
@reesss4 2 года назад
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!!!
@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**.
@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
@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?
@kirillvoloshin2065
@kirillvoloshin2065 3 года назад
wow, I really run into the problem of undefined objects all the time! Thank you for the video!
@gyuriteso
@gyuriteso 3 года назад
Can you add the information about the ECMAScript versions when each of the mentioned possibilities became available please?
@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
@misterl8129
@misterl8129 3 года назад
defer was the mindblowing for me, thank you!
@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 !
@fredi1505
@fredi1505 3 года назад
What I understood was if you run into errors in javascript just throw in a '?'
@shr1han
@shr1han 3 года назад
Woah, I knew all of those! 🎉
@kebien6020
@kebien6020 3 года назад
If you are worried about browser support. Nullish coalescing and optional chaining can be compiled away using babel. a?.b gets transpiled into more or less (a === null) || (a === undefined) ? undefined : a.b a ?? b gets transpilled into (a !== null) || (a !== undefined) ? a : b (with a couple of temp variables thrown in in order to prevent evaluating your code multiple times) So you write nice clean code using the nullish goodies, and compile it into code that will run even in prehistoric browsers.
@95jugal
@95jugal 3 года назад
Thanks for sharing these new features. Please keep creating such informative videos. 👍🏼
@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
@Springfielde
@Springfielde 3 года назад
So we handle "undefined" by writing code that doesn't throw error for it... :D
@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!
@jaimeandrescarcamosepulved2456
Awesome!! thank you. Taking notes.
@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)
@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
@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!
@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.
@frmcf
@frmcf 3 года назад
6:45 Probably shouldn't have used your real address, Kyle...
@narcissisticnarcissus4956
@narcissisticnarcissus4956 3 года назад
Instead of console.log(), I ofter use console.table(). So much cleaner.
@tochimclaren
@tochimclaren 3 года назад
Or console.dir to extract info
@Venezuelangel
@Venezuelangel 3 года назад
I'm not even going to watch this. I liked it, and I thank you, for not making clickbaity titles like "No one knows these 5 js tricks!" or "5 tricks you NEED in 2021". Other channels have more subscribers than yours, and others have content that is more urgently relevant to what I do, but I really admire the way you run this channel, above many other youtubers. Top level stuff.
@WebDevSimplified
@WebDevSimplified 3 года назад
Thank you!
@salih-khan
@salih-khan 2 года назад
It's been so long since i have actually learnt new things regarding Javascript
@valdoimpalatorez
@valdoimpalatorez 3 года назад
Stealing solutions from C# I see. :D
@cryptodapps3340
@cryptodapps3340 3 года назад
I was about to say the same thing
@rschumachr
@rschumachr 2 года назад
Dude the optional chaining will save me so many headaches. I run into this problem daily and have never heard of this syntax!
@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!
@BarrettGamingHD
@BarrettGamingHD 3 года назад
Really cool to see the optional chaining operator out of the box with JavaScript now, very useful
@adam.foster
@adam.foster 3 года назад
Love your knowledge - great tips!
@anhqui19822011
@anhqui19822011 3 года назад
Thank Kyle for very useful video. It helps me a lot!
@Centorios
@Centorios 3 года назад
You could just function(val1='something') {} / const myfunction = (val1='something') => {} and defaults something if val1 comes undefined, nice video, you got me with consolelog styles haha
@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!
@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...🤦‍♂
@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.
@saimamomand7418
@saimamomand7418 2 года назад
so i saw all these in code already and figured what they did, but it's good to have them explained now :D tyy
@Tommy-jn9ps
@Tommy-jn9ps 3 года назад
Kyle we need a story telling video or a debating video like the fang one. I really enjoy those.
@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}`); }
@AniaKovas
@AniaKovas 3 года назад
Handy, Thanks Kyle. Very clear explanations.
@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!
@NicoHeinrich
@NicoHeinrich 3 года назад
This video is pure gold. Thanks so much!
@leanderhughes
@leanderhughes 3 года назад
Very useful Kyle. Thank you!
@excessreactant9045
@excessreactant9045 3 года назад
That defer tag is so cool!
3 года назад
Thanks a lot for the explanation of the new ecma script features. Video full of usefull information. Thumbs up
@andreha3220
@andreha3220 3 года назад
Very nice things I did not know yet, thanks man!
@acodeman8677
@acodeman8677 3 года назад
some of these features are so amazing. Thanks, Man.
@jennifershen4273
@jennifershen4273 3 года назад
Thanks man! This is super helpful!
@nabiismayilov2860
@nabiismayilov2860 3 года назад
Thanks, your videos are very helpful 👍🏻
@gavquinny
@gavquinny 3 года назад
Thnx again pal ;) One back to you Kyle, in VsCode, typing 'log' then hitting `tab` is shorthand for `console.log()`
Далее
Junior Vs Senior Code - How To Write Better Code
22:13
can you repeat it? #tatyanadiablo ##shorts
00:11
Просмотров 889 тыс.
23 CSS features you should know (and be using) by now
31:31
Learn DOM Manipulation In 18 Minutes
18:37
Просмотров 1 млн
How Did I Not Know This TypeScript Trick Earlier??!
9:11
Learn JavaScript DOM Traversal In 15 Minutes
14:44
Просмотров 219 тыс.
Top 10 CSS One Liners That Will Blow Your Mind
13:34
Просмотров 891 тыс.
Top 10 CSS Features You Should Know & Use in 2023
19:56
Before Your Next Interview Watch This
14:18
Просмотров 143 тыс.
10 Tailwind Classes I Wish I Knew Earlier
13:31
Просмотров 157 тыс.