Advertisement
Guest User

Untitled

a guest
Feb 8th, 2016
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. "use strict";
  2. use(function () {
  3.  
  4.     var responseArray = [] //No need to specify size
  5.  
  6.     for (index = 0; index < this.countryjson.states.length; ++index) {
  7.         responseArray.push(JSON.stringify(this.countryjson.states[index]));
  8.     }
  9.  
  10.     return responseArray;
  11.  
  12. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement