码迷,mamicode.com
首页 > Web开发 > 详细

Js As Ordinal

时间:2016-02-01 23:54:03      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:

记录一个觉得不错用的 javascript 方法,也学习了英文关于顺序缩写的规则,从 stackoverflow 的文章 C# 代码改写而来,

 

function asOrdinal(num) {
    if (isNaN(num) || num <= 0) {
        return num + ‘‘;
    }
    switch (num % 100) {
        case 11:
        case 12:
        case 13:
            return num + ‘th‘;
    }
    switch (num % 10) {
        case 1:
            return num + ‘st‘;
        case 2:
            return num + ‘nd‘;
        case 3:
            return num + ‘rd‘;
    }
    return num + ‘th‘;
}

其中关于 111,112,113 的特殊处理值得学习!

 

stackoverflow 原文地址

http://stackoverflow.com/questions/20156/is-there-an-easy-way-to-create-ordinals-in-c

 

Js As Ordinal

标签:

原文地址:http://www.cnblogs.com/rulee/p/5176445.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!