0
Trip planner program
I want to help in javascript trip planner program which is very basic but I’m also beginner so anybody help me?
3 odpowiedzi
0
You need to plan a road trip. You are traveling at an average speed of 40 miles an hour.
Given a distance in miles as input (the code to take input is already present), output to the console the time it will take you to cover it in minutes.
so distance = userinput
which is already declared in the ide
minutes = distance / 40 miles * 60 minutes per hour;
0
It dosn’t work