Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var Sort = function(arr)
- {
- return arr.sort(function(a, b) {
- return b.length - a.length;
- })[0];
- };
- Sort(['big',[0,1,2,3,4],'tiny']);
- //console.log('你好'.length);
- //console.log('world'.length);
Advertisement
Add Comment
Please, Sign In to add comment