Permalink
8 lines (7 sloc)
228 Bytes
|
let array = ['Chris', 'Bob', 'Mark', 'Paul']; |
|
|
|
// Arrow function syntax |
|
array.forEach((e, i, a) => { |
|
const elem = document.createElement('p'); |
|
elem.textContent = (i + 1) + '. ' + e; |
|
document.body.appendChild(elem); |
|
}); |
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.