Currently encountering an issue where nothing is showing up. Assistance needed, please...
function getTotal()
{
var service = prompt("What service are you interested in? ", " ");
var options = prompt("How often would you like the service? ", " ");
var contractLength = prompt("How long do you want the contract?" , " ");
var totalPrice = " ";
switch (service) {
case 'Lawn Maintenance':
switch (options) {
case 'Monthly':
switch (contractLength) {
case '6':
totalPrice = $25 }
}
break; }