Functions and money-safe calculations
مبتدئ~25 د0/4 خطوات
Make money calculations reusable
A function gives a calculation a name and a contract. Smart Ledger stores money as integer agorot, because decimal arithmetic can produce surprising results. Convert once, calculate with integers, and format only at the edge of the UI.
In this module you will create functions for agorot conversion, VAT, and ILS formatting.
التعليمات
1
Create toAgorot(amount) and return rounded integer agorot.
تلميح: Math.round(Number(amount) * 100)
2
Create calculateVat(netAgorot) using VAT_RATE.
3
Create formatIls(agorot) with Intl.NumberFormat.
4
Render net, VAT, and total in #result.
الكود الخاص بك
html
1
2
3
4
5
6
7
8
ابنِها بالـ vibe مع ViBot0 / 12 رسائل مجانية
صف ما تريد بناءه في هذه الخطوة وسأكتب الكود — ثم انقر «تطبيق» لإدراجه في محرّرك. هذه الخطوة: Create toAgorot(amount) and return rounded integer agorot.
معاينة مباشرة
معاينة مباشرة