TypeScript之字符串排序

发布时间:2020-09-12 22:19:08 作者:Aonaufly
来源:网络 阅读:984

一 : 需要用到localeCompare

二 : 代码

$arr.sort(($a: string, $b: string): number => {
    return $a.localeCompare($b);
});

const $printFntFnt: Function = ($arr: Array<string>): void => { 
    if ($arr && $arr.length > 0) { 
        for (let $i: number = 0, $j: number = $arr.length; $i < $j; $i++) { 
            console.log(`item ${$i + 1} : ${$arr[$i]}`);
        }
    }
}

$printFntFnt($arr);

三:结果

TypeScript之字符串排序

推荐阅读:
  1. TypeScript的PureMVC框架之Facade类;
  2. TypeScript(一)TypeScript培养类型思维

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

typescript 排序 %type

上一篇:搭建MFS分布式文件系统

下一篇:如何在IDEA中查看依赖关系的方法步骤

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》