Formats a number as Czech currency with proper thousands separators and CZK suffix.
The numeric amount to format
Formatted string in Czech currency format (e.g., "35 820 CZK")
formatCzechCurrency(35820); // Returns: "35 820 CZK"formatCzechCurrency(1500.50); // Returns: "1 501 CZK" (rounded to nearest whole number)formatCzechCurrency(0); // Returns: "0 CZK" Copy
formatCzechCurrency(35820); // Returns: "35 820 CZK"formatCzechCurrency(1500.50); // Returns: "1 501 CZK" (rounded to nearest whole number)formatCzechCurrency(0); // Returns: "0 CZK"
Formats a number as Czech currency with proper thousands separators and CZK suffix.