How To Create/Use Functions - JavaScript Essentials

preview_player
Показать описание

Functions are one of the most important things to understand in JavaScript since you will use them everywhere in your code. They are arguably more important than learning how to create a variable since they are that core to how JavaScript works. In this video I will share with you everything you need to know about how to create and use functions in JavaScript.

📚 Materials/References:

🌎 Find Me Here:

⏱️ Timestamps:

00:00 - Introduction
00:50 - Why Use Functions
01:50 - Creating/Calling Functions
03:59 - Function Arguments
06:49 - Function Returns

#Functions #WDS #JavaScript
Рекомендации по теме
Комментарии
Автор

I've been a software engineer for 10+ years...

I just enjoy seeing how you explain things because it helps me better explain things to non software engineers and my family!

jessewilliams
Автор

I was just learning functions from Udemy and then got hit by alert on youtube on your video lol. Thank you.

ZahryD
Автор

*me who has been writing JavaScript for 2+ years*: ah yes, interesting

null_spacex
Автор

I've been coding for a couple of years and know how it works, yet I still enjoy your videos. One more thing about function, you also can write a default value inside the parameter.

function sum(a = 0, b = 0) {
return a + b;
}

so, it always returns a "value" even though you are not putting any argument

triteraerlangga
Автор

I knew how these worked, but the way you explain things just makes it so much easier to understand.

wolfhaize
Автор

Wow, I finally got functions! Thank you so much ❤! can you do more short tuts on other fundamentals like Arrays and Objects! I'm super grateful 🙏🏼

Mulator
Автор

Currently going through TOP foundation of JavaScript and your video is super helpful! Thank you.

nirau
Автор

the younger version of me thanks you a lot, the new gen of coders seen this video will thank you a lot Kyle. the true wisdom is in explaining the simple...someone wise once said...

jotasenator
Автор

You explain things so well. Can you make a video for loops and when/how to use the different kinds

HighlyProductive_
Автор

Excellent description, presentation and content. Champion! Came looking for a good explanation, because the official linked-in course was quite confusing. Keep up the good work.

andrewwarren
Автор

I love your channel. Although this video was targeting beginners more I still enjoyed revisiting foundations

Hari
Автор

Thanks for the vid! Timely and needed.

Nice guitar.

DN
Автор

Your teaching is amazing, realy clean

ygjtv-----
Автор

Very helpful video! Can’t believe how simple you were able to explain it.

cagedbird
Автор

Thank you for this! I have struggled to understand JS for so long - HTML and CSS i flew through, but JS I keep getting stumped on. This really cleared a lot of it up. :)

loopylibby
Автор

I love the brief and understandable explanation

yifanli
Автор

I've always been confused about returning values and this helped alot

Zeee
Автор

I got the concept of function and why we use it.
Thanks a lot!

phrasekim
Автор

Love these kinds of video as they are good as a recap...

themarksmith
Автор

Functions are super important for Javascript! We know it!

DeftDodo