Gjjj

function checkPriceFalling(currentPrice, previousPrice) { if (currentPrice < previousPrice) { console.log("Bitcoin price is falling"); } else { console.log("Bitcoin price is not falling"); } }

Comments