Skip to content

Instantly share code, notes, and snippets.

View xixihaha4's full-sized avatar

Xixi Chen xixihaha4

View GitHub Profile
//
// TODO
//
//input: number (subtotal)
//output: number(total including tip and tax)
function billTotal(subtotal) {
return subtotal * 0.15 + subtotal * 0.095 + subtotal;
}