Skip to content

Instantly share code, notes, and snippets.

View ahmadjoya's full-sized avatar

Ahmad Joya ahmadjoya

  • Softwareship-io
  • Afghanistan
View GitHub Profile
@ahmadjoya
ahmadjoya / pmt.js
Last active January 20, 2024 16:51
Excel PMT function to JavaScript
const PMT = (rate, nper, pv, fv, type) => {
/*
* rate - interest rate per month
* nper - number of periods (months)
* pv - present value
* fv - future value
* type - when the payments are due:
* 0: end of the period, e.g. end of month (default)
* 1: beginning of period
*/