exception js

Solutions on MaxInterview for exception js by the best coders in the world

showing results for - "exception js"
Isabella
16 Jan 2020
1
2function div(){
3    let x = prompt('Entrez un premier nombre (numérateur)');
4    let y = prompt('Entrez un deuxième nombre (dénominateur)');
5    
6    if(isNaN(x) || isNaN(y) || x == '' || y == ''){
7        throw new Error('Merci de rentrer deux nombres');
8    }else if(y == 0){
9         throw new Error('Division par 0 impossible')
10    }else{
11        alert(x / y);
12    }
13}
14
15try{
16    div();
17}catch(err){
18    alert(err.message);
19}finally{
20    alert('Ce message s\'affichera quoiqu\'il arrive');
21}
22