Contact: aviboots(AT)netvision.net.il
40,769 questions
53,151 answers
573 users
const worker = { id: 836746, department: { area: 4, room: 16 }, show: function() { console.log(this.id + ' ' + this.department.area + ' ' + this.department.room); } } worker.show(); /* run: 836746 4 16 */