var arr = [["Вася", 1],["Петя", 2], ["Коля", 3]]; var res = arr.map(function(a) { return a[0]; }).sort(function(a, b) { return a > b; }); alert(res);