Money Creation

node v10.24.1
version: 1.0.0
endpointsharetweet
Demonstrates the debts created in a fractional reserve system https://www.khanacademy.org/economics-finance-domain/macroeconomics/monetary-system-topic/macro-banking-and-the-expansion-of-the-money-supply/v/money-creation-in-a-fractional-reserve-system-ap-macroeconomics-khan-academy
let initialMoney = 1000 function createMoney(amount, reserveRequirement = 0.10){ console.log("Real money created: quot; + amount) console.log("Money owed to bank: quot; + amount * ( 1 / reserveRequirement ) ) } createMoney(initialMoney)
Loading…

no comments

    sign in to comment