Skip to content

Instantly share code, notes, and snippets.

@lanqy
Created March 28, 2013 03:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lanqy/5260214 to your computer and use it in GitHub Desktop.
Save lanqy/5260214 to your computer and use it in GitHub Desktop.
随机生成20w号码
var mobiles = [];
for (var i = 0; i < 200000; i++) {
mobiles[i] = (13000000000 + Math.floor(Math.random() * 1000000000)).toString();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment