Answers for "function change(cash) { // Your code goes here return { two: 0, five: 0, ten: 0 }; }"

Go
0

function change(cash) { // Your code goes here return { two: 0, five: 0, ten: 0 }; }

function giveChange(amount) {
    var ch = { two:0, five:0, ten:0 };

    if ( amount < 2 || amount == 3 ) return;

    if ( amount % 2 ) {
        amount -= 5;
        ch.five = 1;
    }   
    
    while ( amount % 10 ) {
        amount -= 2;
        ch.two ++;
    }

    ch.ten = amount/10;

    return ch;
}

console.log(giveChange(12));
console.log(giveChange(27));
console.log(giveChange(33));
Posted by: Guest on September-10-2020

Code answers related to "function change(cash) { // Your code goes here return { two: 0, five: 0, ten: 0 }; }"

Browse Popular Code Answers by Language