Convert Arabic numbers to words with javascript
I am looking for JavaScript function to convert numbers to Arabic words For example 23 > ثلاثة وعشرين 53 > ثلاثة وخمسون .... > .... I found some solutions but it is all .net http://www.codeproject.com/Articles/112949/Number-To-Word-Arabic-Version http://libstation.com/products/numbers-in-words/ I have searched the web but could not find any solution ( well, i could not understand while searching in Arabic ;) ) You can do use similar function : http://jsbin.com/jesoj/1/ Zero to Million : function zeroToMillion(num) { num = (num + "").replace(" ", ""); var exceptional = {0: "zero", 11: "eleven",