alankis

temp

Oct 7th, 2013
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. var Sort = function(arr)
  2. {
  3. return arr.sort(function(a, b) {
  4. return b.length - a.length;
  5. })[0];
  6. };
  7.  
  8.  
  9. Sort(['big',[0,1,2,3,4],'tiny']);
  10.  
  11. //console.log('你好'.length);
  12. //console.log('world'.length);
Advertisement
Add Comment
Please, Sign In to add comment