Skip to content

Instantly share code, notes, and snippets.

@nishinoshake
Last active November 27, 2016 18:09
Show Gist options
  • Save nishinoshake/fc235829fa841da1c5a2 to your computer and use it in GitHub Desktop.
Save nishinoshake/fc235829fa841da1c5a2 to your computer and use it in GitHub Desktop.
JSでオブジェクトのバリューでソート
;(function() {
var arr = [
{
'name': 'kimura',
'value': 56
},
{
'name': 'kaela',
'value': 2
},
{
'name': 'rie',
'value': 13
}
];
console.log(arr);
console.log(arr.sort(function(a, b){return a.value - b.value;}));
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment