let menu = { width: 200, height: 300, title: "My menu" }; function multiplyNumeric(obj) { /* your code */ } multiplyNumeric(menu); alert( "menu width=" + menu.width + " height=" + menu.height + " title=" + menu.title );