Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function getArticleGenerator(articles) {
- let content = document.getElementById('content');
- let index = 0;
- return function () {
- if (index < articles.length) {
- let newArticle = document.createElement('article');
- newArticle.textContent = articles[index];
- content.insertBefore(newArticle, content.firstChild);
- index++;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement