JavaScript Error handling in 9 minutes! ⚠

  Рет қаралды 19,113

Bro Code

Bro Code

Күн бұрын

Пікірлер
@BroCodez
@BroCodez Жыл бұрын
// Error = An Object that is created to represent a problem that occurs // Occur often with user input or establishing a connection // try { } = Encloses code that might potentially cause an error // catch { } = Catch and handle any thrown Errors from try { } // finally { } = (optional) Always executes. Used mostly for clean up // ex. close files, close connections, release resources try{ const dividend = Number(window.prompt("Enter a dividend: ")); const divisor = Number(window.prompt("Enter a divisor: ")); if(divisor == 0){ throw new Error("You can't divide by zero!"); } if(isNaN(dividend) || isNaN(divisor)){ throw new Error("Values must be a number"); } const result = dividend / divisor; console.log(result); } catch(error){ console.error(error); } finally{ console.log("This always executes"); } console.log("You have reached the end!");
@yeeter420
@yeeter420 8 күн бұрын
One of the best channels for learning code. Thank you❤
@justmakeitviral4733
@justmakeitviral4733 Жыл бұрын
I love these short videos....it's good for revision
@xmorlanzz
@xmorlanzz 11 ай бұрын
repetition is the mother of learning, fellow programmers!
@hunin27
@hunin27 Жыл бұрын
i always did lots of if statements to handle errors and i thought it was the best way lol
@teoanilacar
@teoanilacar 7 ай бұрын
This guy is awesome!
@Sijo2
@Sijo2 9 ай бұрын
Thank you for this tutorial video. I really helped my understanding
@popsbeats_100
@popsbeats_100 2 ай бұрын
Beautiful👌🏿
@jahazielvazquez7264
@jahazielvazquez7264 10 ай бұрын
Clear as day! Thank you good sir
@dev_ression
@dev_ression Жыл бұрын
nicely explained bro, thank you!
@subinkv6849
@subinkv6849 10 ай бұрын
Great content..
@dimitro.cardellini
@dimitro.cardellini 7 ай бұрын
But why not just check if result is Infinity or NaN after we performed the division? Actually, the fact that JS doesn't fail on division by zero is an intentional feature of JS.
@EnzoJasonCotia
@EnzoJasonCotia 3 ай бұрын
Thank you 😢
@s.a.r.a.01
@s.a.r.a.01 3 ай бұрын
thank you for this
@hunin27
@hunin27 Жыл бұрын
thanks bro
@asifahmed6568
@asifahmed6568 11 ай бұрын
🎉🎉🎉🎉🎉🎉❤
Build this JS calculator in 15 minutes! 🖩
15:20
Bro Code
Рет қаралды 703 М.
The Actual Dumbest Thing About Try/Catch
11:47
Theo - t3․gg
Рет қаралды 48 М.
ВЛОГ ДИАНА В ТУРЦИИ
1:31:22
Lady Diana VLOG
Рет қаралды 1,2 МЛН
Jaidarman TOP / Жоғары лига-2023 / Жекпе-жек 1-ТУР / 1-топ
1:30:54
"Идеальное" преступление
0:39
Кик Брейнс
Рет қаралды 1,4 МЛН
Java exception handling ⚠️
7:53
Bro Code
Рет қаралды 122 М.
I'm Ditching Try/Catch for Good!
10:29
Web Dev Simplified
Рет қаралды 189 М.
JavaScript Error Handling - try, throw, catch, finally.
4:06
JavaScript DESTRUCTURING in 8 minutes! 💥
8:41
Bro Code
Рет қаралды 27 М.
5 Async + Await Error Handling Strategies
18:11
Wes Bos
Рет қаралды 24 М.
Learn JavaScript CLOSURES in 10 minutes! 🔒
10:58
Bro Code
Рет қаралды 25 М.
Learn JavaScript OBJECTS in 7 minutes! 🧍
7:01
Bro Code
Рет қаралды 77 М.
Learn JavaScript MOUSE EVENTS in 10 minutes! 🖱
10:30
Bro Code
Рет қаралды 52 М.
How To Use Libraries Like A Senior Dev
9:53
Web Dev Simplified
Рет қаралды 49 М.
Learn JavaScript VARIABLE SCOPE in 5 minutes! 🏠
5:26
Bro Code
Рет қаралды 23 М.