What will be the value of your lump sum investment after a period of time?
Disclaimer:
This is an illustration only. The figure may differ from actual investment result.
| Age | Total Investment(RM) | Balance(RM) | Profit(RM) |
|---|
jQuery(document).ready(function (data) { jQuery('#btnCalculate').bind('click', function (event ) { event.preventDefault(); var $tbl = jQuery('#monthly_investment_table'), age = parseInt(jQuery('#age').val()), amount = parseInt(jQuery('#investment_monthly_amount').val()), return_profit = parseFloat(jQuery('#return_profit').val() / 100), yearly_amount = 0, balance = amount, profit = 0; $tbl.find('tr:gt(0)').remove(); for (i = 1; i <= 30; i++) { yearly_amount = (amount); balance = balance + (balance * return_profit); profit = (balance - yearly_amount); jQuery('tbody:last-child', $tbl).append('
Disclaimer:
This is an illustration only. The figure may differ from actual investment result.
| Age | Total Investment(RM) | Balance(RM) | Profit(RM) |
|---|