Skip to content

Instantly share code, notes, and snippets.

@Dosant
Created March 5, 2017 09:16
Show Gist options
  • Save Dosant/9e711fe7e82a0517ca5e16b8daa9b5a3 to your computer and use it in GitHub Desktop.
Save Dosant/9e711fe7e82a0517ca5e16b8daa9b5a3 to your computer and use it in GitHub Desktop.
var articlesService = (function () {
var articles = [1,2,3];
function getArticles() {
return articles;
}
function addArticle(article) {
articles.push(article);
}
return {
getArticles: getArticles,
addArticle: addArticle
};
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment