Validation and error handling
Protect the ledger from bad input
Real users mistype, paste spaces, and leave fields empty. Production code treats that as expected behavior. A validation function either returns a clean transaction or throws a precise error. The submit handler catches it and shows a useful message.
Never silently turn invalid money into zero. Invalid is not empty, and empty is not zero.
निर्देश
Create createTransaction(description, amount) and trim the description.
संकेत: const cleanDescription = description.trim();
Reject a short description and non-positive or non-finite amount.
Wrap transaction creation in try/catch.
Show the error message in #form-error.
आपका कोड
इस स्टेप के लिए आप जो बनाना चाहते हैं उसे बताएं और मैं कोड लिख दूंगा — फिर इसे अपने एडिटर में डालने के लिए Apply पर क्लिक करें। यह स्टेप: Create createTransaction(description, amount) and trim the description.