You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Numbers 04. Find Cost of Tile to Cover W x H Floor - Calculate the total cost of tile it would take to cover a floor plan of width and height, using a cost entered by the user.
*/
var getCost = function (sqFtCost, floorWidth, floorHeight) {
"use strict";
return "The total cost is $" + sqFtCost * floorWidth * floorHeight + " for " + floorWidth * floorHeight + " square feet";