-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.js
24 lines (21 loc) · 876 Bytes
/
script.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
function compute()
{
var principal = document.getElementById("principal").value;
var rate = document.getElementById("rate").value;
var years = document.getElementById("years").value;
var interest = principal * years * rate /100;
var year = new Date().getFullYear()+parseInt(years);
if (principal <= 0) {
alert ("Please, the Amount should be more than 0");
document.getElementById("principal").focus();
}else {
var amount = (principal*(rate/100))*years;
document.getElementById("result").innerHTML="If you deposit <mark>"+principal+
"</mark>,\<br\>at an interest rate of <mark>"+rate+"%</mark>.<br>You will receive an amount of <mark>"+
amount+"</mark>,<br>in the year <mark>"+year+"</mark><br>"
}
}
function updateRate(){
var rateval = document.getElementById("rate").value;
document.getElementById("rate_val").innerText=rateval;
}