do u ever like forget how to write...?????
seen from United Kingdom
seen from United States

seen from France
seen from China

seen from Ireland

seen from United States
seen from Hungary

seen from Malaysia
seen from United States
seen from China

seen from Malaysia
seen from Germany
seen from China
seen from Macao SAR China
seen from Germany
seen from Germany

seen from Germany
seen from China
seen from Pakistan
seen from United States
do u ever like forget how to write...?????
Someone give me the brain power to study for a midterm and 2 quizzes and memorize a script thingy.
I've spent all day working on my assignment. So far all I have is:
//Function begins
function welcome() {
username = prompt("What is your name?");
email = prompt("What is your e-mail address?");
}
function details() {
var fuel = prompt("Would you prefer petrol or diesel?");
var passengers = prompt("How many passengers will there be?");
var aircon = prompt("Do you require air-conditioning?");
var transmission = prompt("Do you want a Manual, Semi-Automatic or Automatic Transmission?");
hire = prompt("How long would you like to hire a vehicle for? (Day Hire, Weekend Hire or Weekly Hire)");
if ((fuel == "petrol") && (passengers == "2") && (aircon == "yes") && (transmission == "semi-automatic")) {
result = "Lambourghini Aventador";
} else {
result = "some form of SUV";
}
if (result == "Lambourghini Aventador") {
if (hire == "day hire") {
cost = 2000;
}
if (hire == "Weekend hire") {
cost = 3800;
}
if (hire == "Weekly hire") {
cost = 12000;
}
}
}
//End of function
welcome();
details();
document.write("Thanks for your details, " + username +'!');
document.write('<br>');
document.write('Your e-mail address is: ' + email + '.');
document.write('<br>');
document.write('Your matched vehicle is: ' + result + '.');
document.write('<br>');
document.write('The cost to hire this vehicle for ' + hire + ' will cost you: £' + cost);