Skip to content

Instantly share code, notes, and snippets.

@saidie
Created April 22, 2012 02:41
Show Gist options
  • Save saidie/2442517 to your computer and use it in GitHub Desktop.
Save saidie/2442517 to your computer and use it in GitHub Desktop.
article filter
function nextArticle(articles){
if(articles.length == 0) return(null);
var date = new Date();
return(articles[date.getMinutes() % articles.length]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment