Skip to content

Instantly share code, notes, and snippets.

@andreabalducci
Created June 11, 2015 16:40
Show Gist options
  • Save andreabalducci/05f173215db5299b29a7 to your computer and use it in GitHub Desktop.
Save andreabalducci/05f173215db5299b29a7 to your computer and use it in GitHub Desktop.
Typescript intro
// http://channel9.msdn.com/events/Build/2015/3-644
function sortByName(a){
var result = a.slice(0);
result.sort(function(x,y){
return x.name.localCompare(y.name);
})
}
sortByName(5);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment