Advertisement
Guest User

Untitled

a guest
Dec 6th, 2016
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. setInterval(function(){
  2. $http.get('/some/api').then(function(dataArray){
  3. dataArray.forEach(function(element){
  4. setInterval(function(){
  5. console.log(element);
  6. },1000)
  7. });
  8. })
  9. },5000)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement