The importance of the return keyword in Javascript
I want to understand how to use the return keyword with function properly and when to use it. For instance, I tried the following code function getWaterBottle(money) { console.log(`You Can Buy "${parseInt(money / 1.5)}" Bottles Of Water`) return money %…