/*
•	City Names: Write a function called city_country() that takes in the name of a city and its country. The function should return a string formatted like this:
•	"Lahore, Pakistan"
•	Call your function with at least three city-country pairs, and print the value that’s returned
*/
function city_country(city: string, country: string): string {
    return `${city}, ${country}`;
}

// Call the function with three city-country pairs and print the returned values
console.log(city_country("Lahore", "Pakistan"));
console.log(city_country("Paris", "France"));
console.log(city_country("New York", "USA"));

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: