Preview:
var numWaterBottles = function(numBottles, numExchange) {
    let drinked = 0;
    let empty = 0;
    while (numBottles + empty >= numExchange) {
        drinked += numBottles; 
        empty += numBottles;
        numBottles = Math.floor(empty / numExchange);
        empty -= numBottles * numExchange;
    }
    return drinked + numBottles;
};
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter