JavaScript FUNCTIONS are easy! 📞

  Рет қаралды 51,879

Bro Code

Bro Code

Күн бұрын

Пікірлер: 55
@BroCodez
@BroCodez Жыл бұрын
// function = A section of reusable code. // Declare code once, use it whenever you want. // Call the function to execute that code. function happyBirthday(username, age){ console.log(`Happy birthday to you!`); console.log(`Happy birthday to you!`); console.log(`Happy birthday dear, ${username}`); console.log(`Happy birthday to you!`); console.log(`You are ${age} years old!`); } function add(x, y){ return x + y; } function subtract(x, y){ return x - y; } function multiply(x, y){ return x * y; } function divide(x, y){ return x / y; } function isEven(number){ return number % 2 === 0 ? true : false; } function isValidEmail(email){ return email.includes("@") ? true : false; } console.log(happyBirthday("BroCode", 25)); console.log(isValidEmail("Bro@fake.com"));
@sertying
@sertying Жыл бұрын
Hello Bro Code! May I have a favor? can you make a tutorial on how to make pages in react js (jsx). Please? :(
@percussion1999
@percussion1999 6 ай бұрын
@iowatheother4986
@iowatheother4986 21 күн бұрын
idk if u mentioned it or not but on the email one can you type the function however you want as long as "is" is in front? can i type isEmailValid? instead of isValidEmail?
@nathanielfox1143
@nathanielfox1143 11 ай бұрын
After watching multiple JS videos on functions, this is the video that finally gave me that "Aha!" moment. Now I understand. Thank you!
@GrayShark09
@GrayShark09 8 ай бұрын
He is such an amazing teacher!
@Brakolli
@Brakolli 3 ай бұрын
fr huh
@mohammedshafiulla9115
@mohammedshafiulla9115 10 ай бұрын
Really bro, the way of your explanation is not in this particular video but in all this playlist is amazing, I like the way you explain everything with the examples.👌
@AvidAfrican
@AvidAfrican 10 ай бұрын
Listened to bunch of videos in yt i didn't get it until i saw Bro code i got a better understanding...
@nailevsky
@nailevsky 11 ай бұрын
That's one of the, actually it's the best video about how functions work!
@juanarango4436
@juanarango4436 8 ай бұрын
THANK YOU THANK YOU. SO MANY VIDEOS ON THIS TOPIC. AND I FINALLY GOT IT WATCHING THIS ONE.!!!!!
@gichuhisamuel4387
@gichuhisamuel4387 Жыл бұрын
Thanks bro much appreciated you are life saviour
@isaacfavour3696
@isaacfavour3696 8 ай бұрын
this was so helpful Brocode ! the best I've seen on this particular topic so far
@FloridaLuxGroup-2
@FloridaLuxGroup-2 Ай бұрын
Thank you for making "this stuff" easiert to understamd and apply!
@piotrmazgaj
@piotrmazgaj 5 ай бұрын
This is my seal. I have watched the entire video, understood it, and I can explain it in my own words, thus I have gained knowledge. This is my seal.
@MusfikaAkter-k4t
@MusfikaAkter-k4t Ай бұрын
thanks bro. you are the man. watched so many js videos but you saved me
@STR-DP
@STR-DP 11 ай бұрын
SpongeBob turned 37 in 2023 and Patrick turned 38.
@l-fitness3590
@l-fitness3590 11 ай бұрын
I laughed more than I should have at that part 😂
@ronykax
@ronykax Жыл бұрын
dude ur a legend
@Aprabuddha
@Aprabuddha 11 ай бұрын
He is bro.... 🤣🤣
@finanin3263
@finanin3263 5 ай бұрын
Thank you for making these topics more understandable. I have been using codecademy and some of it dosn't even sound like it's written in English. Clear ideas, good examples, easy learning. thanks again :)
@ToumiDouaa-d4j
@ToumiDouaa-d4j 10 ай бұрын
perfectly explained !!!!! thank youuuuuuu
@greengraphics5060
@greengraphics5060 11 ай бұрын
You made me understand Javascript. Pls can you do node Js videos
@Azmeroth1370
@Azmeroth1370 11 ай бұрын
this man sound like another great man, Josh from Let’sgameitout
@Toxic-xk2zz
@Toxic-xk2zz 10 ай бұрын
Love the way you explained ❤
@alexglez3434
@alexglez3434 2 ай бұрын
gracias,excelente explicacion 👍
@mostlenyora316
@mostlenyora316 11 ай бұрын
Thanks King 🤟
@NickTorius
@NickTorius 5 ай бұрын
The craziest thing is that im watching this tutorial today an it actually is spongebobs birthday today, july 14
@selviraja775
@selviraja775 Жыл бұрын
Love from, india you are a very good explanator sir.
@ronykax
@ronykax Жыл бұрын
why do Indians call people sir
@yaman5513
@yaman5513 2 ай бұрын
​ Coz we always give respect to one who teaches us​@@ronykax
@SibaSankar-i7s
@SibaSankar-i7s 4 ай бұрын
You are fantastic,I love you Man❤
@Xics-c5c
@Xics-c5c 3 ай бұрын
Bro I love ❤️ you You saved me
@FlockofSmeagles
@FlockofSmeagles 2 ай бұрын
You need to hire someone to go through your catalogue, and create playlists around certain topics. Wonderful job.
@nandinisingh8952
@nandinisingh8952 8 ай бұрын
outstanding and easy to understand...thankyou :)
@hackingmaster392
@hackingmaster392 Жыл бұрын
love you from bangladesh ❤❤❤❤
@markojelicic5228
@markojelicic5228 Жыл бұрын
best explanation, tnx :)
@joachimuche424
@joachimuche424 11 ай бұрын
Thx
@Fan_Of_Adam
@Fan_Of_Adam 5 ай бұрын
4:30 🤣🤣
@lenix_x
@lenix_x 3 ай бұрын
same XD
@Mostafa-jh2ij
@Mostafa-jh2ij 8 ай бұрын
Thanks Bro!
@iowatheother4986
@iowatheother4986 21 күн бұрын
idk if u mentioned it or not but on the email one can you type the function however you want as long as "is" is in front? can i type isEmailValid? instead of isValidEmail?
@samueldayo9261
@samueldayo9261 11 ай бұрын
Thanks for this video, bro code
@bicyclekikz14
@bicyclekikz14 8 ай бұрын
when you switch to (age, username) as parameters but the argument stays the same, how does javascript know age suppose to belong to a number?? and when you call it, the order didn't change
@richdevil5816
@richdevil5816 3 ай бұрын
Bro code😎🔥💯
@sertying
@sertying Жыл бұрын
Hello Bro Code! May I have a favor? can you make a tutorial on how to make pages in react js (jsx). Please? :(
@buddhavlr1500
@buddhavlr1500 Жыл бұрын
he already did some tutorials on react like 2 weeks ago
@dileepkumardm1609
@dileepkumardm1609 Жыл бұрын
Sir along with programming language what Knowledge is required to get placed.
@gowgowgowgow7215
@gowgowgowgow7215 3 ай бұрын
love ya.
@nikhiltiwari7371
@nikhiltiwari7371 Жыл бұрын
Bro I got sem end exams and have web dev subject can you please make a tutorial about MEAN stack pleease
@mohammed_mishal
@mohammed_mishal Жыл бұрын
Hi BRO CODE : ) .
@hesamsa
@hesamsa 4 ай бұрын
i'm patrick years old.
@islam_095._
@islam_095._ Жыл бұрын
Is there an algorithm that predicts aviator play?
@MURUGA620
@MURUGA620 5 ай бұрын
😂😂
@KcJunior-hz3ef
@KcJunior-hz3ef 2 ай бұрын
Mine is saying (Uncaught ReferenceError:)
Learn JavaScript VARIABLE SCOPE in 5 minutes! 🏠
5:26
Bro Code
Рет қаралды 23 М.
Learn JavaScript ARROW FUNCTIONS in 8 minutes! 🎯
8:02
Bro Code
Рет қаралды 46 М.
Chain Game Strong ⛓️
00:21
Anwar Jibawi
Рет қаралды 41 МЛН
Леон киллер и Оля Полякова 😹
00:42
Канал Смеха
Рет қаралды 4,7 МЛН
黑天使被操控了#short #angel #clown
00:40
Super Beauty team
Рет қаралды 61 МЛН
The different types of JavaScript functions explained
14:47
Kevin Powell
Рет қаралды 46 М.
Learn Closures In 13 Minutes
13:22
Web Dev Simplified
Рет қаралды 72 М.
Learn JavaScript CALLBACKS in 7 minutes! 🤙
7:17
Bro Code
Рет қаралды 74 М.
Higher Order Functions in JavaScript Explained Simply
9:55
Teddy Smith
Рет қаралды 9 М.
What are JavaScript PROMISES? 🤞
12:37
Bro Code
Рет қаралды 86 М.
JavaScript Function - What's your Function?
12:27
Fireship
Рет қаралды 186 М.
8 Must Know JavaScript Array Methods
10:05
Web Dev Simplified
Рет қаралды 1 МЛН
Learn JavaScript CLOSURES in 10 minutes! 🔒
10:58
Bro Code
Рет қаралды 26 М.
Build this JS calculator in 15 minutes! 🖩
15:20
Bro Code
Рет қаралды 722 М.
Programming Is NOT Enough | Add these 7 skills…
13:19
Travis Media
Рет қаралды 423 М.
Chain Game Strong ⛓️
00:21
Anwar Jibawi
Рет қаралды 41 МЛН