DEL - SIP Calculator

Size
1,569 Kb
Views
6,072

How do I make an del - sip calculator?

What is a del - sip calculator? How do you make a del - sip calculator? This script and codes were developed by Hemant Aggarwal on 09 January 2023, Monday.

DEL - SIP Calculator Previews

DEL - SIP Calculator - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>DEL - SIP Calculator</title>
</head>
<body> <p></p> <script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js'></script> <script src="js/index.js"></script>
</body>
</html>

DEL - SIP Calculator - Script Codes JS Codes

var p = 5000,	// Investment Amount	n = 1,	// Number of times in a year - Frequency	r = 15/n/100,	t = 2,	// Duration in Years	calc = 0,	instalments = n*t;
calc = p * Math.pow((1 + r/n), n*t);
//calc = p * ( Math.pow( (1+r), instalments) – 1 ) / (r) * (1+r);
calc = p * (Math.pow( (1+r), instalments) - 1) / r * (1 + r);
$('p').text(calc);
DEL - SIP Calculator - Script Codes
DEL - SIP Calculator - Script Codes
Home Page Home
Developer Hemant Aggarwal
Username mstoic
Uploaded January 09, 2023
Rating 3
Size 1,569 Kb
Views 6,072
Do you need developer help for DEL - SIP Calculator?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Hemant Aggarwal (mstoic) Script Codes
Create amazing SEO content with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!