'更新阿拉伯数字转中文数字的代码'

This commit is contained in:
ForeverSmiYng 2024-06-27 13:59:49 +08:00
parent 83abb309ca
commit c39783bf30

View File

@ -22,4 +22,5 @@ function ArabicToChinese(Arabic_numerals) {
const chineseNumerals = ["零", "一", "二", "三", "四", "五", "六", "七", "八", "九"];
return chineseNumerals[parseInt(match)];
});
return mixNumerals;
}