Skip to content

Instantly share code, notes, and snippets.

@volodymyr-mykhailyk
Created June 13, 2012 10:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save volodymyr-mykhailyk/2923242 to your computer and use it in GitHub Desktop.
Save volodymyr-mykhailyk/2923242 to your computer and use it in GitHub Desktop.
JS Integers array serialization example
//array of integers
var t = [123, 5468, 215,4,6543]
//will be serialized using:
//t.join(",")
//to following string:
"123,5468,215,4,6543"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment