💥Conversion Functions
A set of functions can be utilized to convert numbers between their Arabic text representation and their numerical form.
Table of Contents
text2number
text2number(text)const text = "خمسة عشر";
const number = text2number(text);
console.log(number); // 15number2text
number2ordinal
Last updated