Guest User

Untitled

a guest
Jun 14th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. function explode(values){
  2. var vals = '';
  3. if (values.length > 1){
  4. for(var item in values){
  5. vals = vals + values[item] + ', ';
  6. }
  7. } else {
  8. vals = values[0];
  9. }
  10. return vals;
  11. }
Add Comment
Please, Sign In to add comment