Skip to content

Instantly share code, notes, and snippets.

@camelcaseblog
Created July 4, 2019 16:31
Show Gist options
  • Save camelcaseblog/d93467643e7c27a19f5c13db855180db to your computer and use it in GitHub Desktop.
Save camelcaseblog/d93467643e7c27a19f5c13db855180db to your computer and use it in GitHub Desktop.
>>> var a = [3, 2, 1];
>>> var b = a.sort();
>>> b
[1, 2, 3]
>>> a
[1, 2, 3]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment