| [ Web Proxy ] |
| Viewing: https://raw.githubusercontent.com/ProtoPetr/Reusable/master/JavaScript/5-array.js | [Back] [Original] |
'use strict';
const welcome = person => {
console.log(`Ave, ${person.name}!`);
};
const persons = [
{ name: 'Marcus Aurelius' },
{ name: 'Mao Zedong' },
{ name: 'Rene Descartes' },
];
for (const person of persons) {
welcome(person);
}
| Web Proxy Viewer | New URL | Original Page |