0
Error handling
https://code.sololearn.com/WtkcT3ts8uHW/?ref=app Can u write an error handling code for this.
5 ответов
+ 2
JavaScript Errors - Throw and Try to Catch
https://www.w3schools.com/js/js_errors.asp
Keep learning & happy coding :D
+ 1
Learn try and catch
like if(condition){
try{
return 'result';
catch(error){
return '2result';
}
0
Can you please be a bit more specific. Because I do not know where to write the try and catch
0
Joel Sebastian Jijo Read it there - https://javascript.info/try-catch
0
I tried puting try around the whole thing and then catch after it . Still showed error. that's why I asked someone to do it. I tried writing it in different places. still doesn't seem to work.