Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function createCityObject(name, area, population, country, postCode) {
- let city = {
- name, area, population, country, postCode
- };
- for (let key in city) {
- console.log(`${key} -> ${city[key]}`);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment