-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexercise.html
More file actions
29 lines (29 loc) · 842 Bytes
/
Copy pathexercise.html
File metadata and controls
29 lines (29 loc) · 842 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script lang="JavaScript">
let count={
id:1,
nome:'ali',
solde:100,
affichage:function(){
return ' id = ' + this.id + ' nome = ' + this.nome + ' somme = ' + this.solde ;
}
};
window.alert(count.affichage());
let a=prompt('ajouter :')
let b=+a
count.solde=count.solde+b
window.alert('solede maintenent === ' + count.solde );
let c=prompt('Retirer :')
let d=+c
count.solde=count.solde-d
window.alert('solede maintenent === ' + count.solde );
</script>
</body>
</html>