georgiev955

Next Article

Oct 2nd, 2023
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function getArticleGenerator(articles) {
  2.     return function showNext() {
  3.         if (articles.length !== 0) {
  4.             let currentArticle = articles.shift();
  5.             let holderElement = document.getElementById("content");
  6.             let newArticle = document.createElement("article");
  7.             newArticle.textContent = currentArticle;
  8.             holderElement.appendChild(newArticle);
  9.         }
  10.     };
  11. }
Advertisement
Add Comment
Please, Sign In to add comment