kstoyanov

05. Next Article

Oct 7th, 2020
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.25 KB | None | 0 0
  1. function getArticleGenerator(articles) {
  2.     let container = $('div#content');
  3.  
  4.     return function () {
  5.         if (articles.length > 0) {
  6.             container.append($('<article>')
  7.                 .text(articles.shift()));
  8.         }
  9.     }
  10. }
Add Comment
Please, Sign In to add comment