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
//? This program prompts the user to enter a distance in kilometers and converts it into miles using the conversion factor : 1 kilometer is approximately equal to 0.621371 miles. It then displays the converted distance.
// prompts user to enter distance in kilometers
let kilometers = parseFloat(prompt("Enter the distance in kilometers: "));