// a practical application of my CS 101 skills.
// log output
Total cost for 15 yards of mulch is $384.5.
You will need 1 bottle(s) of Safari for a cost of $100. There will be 0.45 ounces leftover. You will save 2 trees each with a diameter at chest height of 16.5 inches.
Total landscape cost is $484.5. If you spread mulch at 1.5 yards per hour, total time to spread will be 10 hours.
//source code
var landscapeEstimate = function(mulchQty, treesToSave) {
delivery = 17;
yard = 24.50;
totalMulch = (mulchQty * yard) + delivery;
// log output
Total cost for 15 yards of mulch is $384.5.
You will need 1 bottle(s) of Safari for a cost of $100. There will be 0.45 ounces leftover. You will save 2 trees each with a diameter at chest height of 16.5 inches.
Total landscape cost is $484.5. If you spread mulch at 1.5 yards per hour, total time to spread will be 10 hours.
//source code
var landscapeEstimate = function(mulchQty, treesToSave) {
delivery = 17;
yard = 24.50;
totalMulch = (mulchQty * yard) + delivery;
Add Comment






