📊 Calculators Deelzo
⭐ Trusted by 10,000+ users
Powerful Calculators for Your Financial Journey
Free and easy financial calculators.
Age Calculator
EMI Calculator
© 2026 Calculators Deelzo
function ageCalc(){
var dob=document.getElementById("dob").value;
if(!dob){ document.getElementById("ageResult").innerHTML="Please select date"; return; }
var birth=new Date(dob); var today=new Date();
var age=today.getFullYear()-birth.getFullYear();
document.getElementById("ageResult").innerHTML="Your Age: "+age+" Years";
}
function emiCalc(){
var loan=document.getElementById("loan").value;
var rate=document.getElementById("rate").value/12/100;
var months=document.getElementById("years").value*12;
if(!loan || !rate || !months){ document.getElementById("emiResult").innerHTML="Fill all fields"; return; }
var emi=(loan*rate*Math.pow(1+rate,months))/(Math.pow(1+rate,months)-1);
document.getElementById("emiResult").innerHTML="Monthly EMI: ₹ "+emi.toFixed(2);
}