-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path71.js
40 lines (34 loc) · 1 KB
/
71.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
try{
console.log(program)
console.log('Program ran successfully')
}
catch(error){
console.log(error)
// console.log(program) // did error in catch yet finally runs
}
finally{
console.log('I am a good boy') // it run wheter error occurs or not
}
// --> finally wala chalega aur niche ka code nhi chalega agar catch me error aaya toh.
/*
Why finally ? we could simply write it outside
=> Whenever there is an error out of try, code execution stops but code written in finally always runs no matter what happens.
=> always used with try
=> genrally used to do clean ups
=> agar try ya catch me se koi bhi chala toh finally chalega hi chalega always, chahe duniya kahtam ho jae
REMEBER : try catch finally
*/
// amazing example
const fun = ()=>{
try{
console.log('Code ran successfully')
return 1
}
catch(error){
console.log(tullu)
}
finally{
console.log('Even there is return in try. finally runs')
}
}
fun()