Contact: aviboots(AT)netvision.net.il
41,157 questions
53,648 answers
573 users
const func = ({id = 87321, name = 'Angelina', city}) => { document.write(id + " : " + name + ' : ' + city + '<br />'); }; const args = { id: 994372, name: 'Tom', city: 'New York' }; func(args); /* run: 994372 : Tom : New York */