Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. var usersfromarray = strArray[2];//from a callback, not working
  2. console.log(usersfromarray)//this writes 792-1816vh1,792-1816vh2
  3. var users='792-1816vh1','792-1816vh2'//this is hardcoded in the js file.
  4. var pushtext="Some text..."
  5. var tid="now"
  6.  
  7. var str='792-1816vh1,792-1816vh2';
  8. var res='';
  9.  
  10. str.split(',').forEach(function(elem) {
  11. res += "'" + elem + "',";
  12. });
  13.  
  14. // remove last ","
  15. res = res.substring(0, res.length-1);
  16.  
  17. console.log(res);//this writes '792-1816vh1','792-1816vh2'
  18.  
  19. skickaPushnotiser([[pushtext,tid],users]);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement