Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

การแปลงตัวเลขเป็นสกุลเงินอินเดียโดยใช้ JavaScript


สมมติว่าเรามีตัวเลขใดๆ และจำเป็นต้องเขียนฟังก์ชัน JavaScript ที่รับตัวเลขและคืนค่าที่เทียบเท่าในสกุลเงินอินเดีย

toCurrency(1000) --> ₹4,000.00
toCurrency(129943) --> ₹1,49,419.00
toCurrency(76768798) --> ₹9,23,41,894.00

ตัวอย่าง

รหัสสำหรับสิ่งนี้จะเป็น −

const num1 = 1000;
const num2 = 129943;
const num3 = 76768798;
const toIndianCurrency = (num) => {
   const curr = num.toLocaleString('en-IN', {
      style: 'currency',
      currency: 'INR'
   });
return curr;
};
console.log(toIndianCurrency(num1));
console.log(toIndianCurrency(num2));
console.log(toIndianCurrency(num3));

ผลลัพธ์

และผลลัพธ์ในคอนโซลจะเป็น −

₹1,000.00
₹1,29,943.00
₹7,67,68,798.00