Format a count with thousands separators and pluralize the associated word.
countLabel(1, "card") // "1 card"countLabel(1234, "product") // "1,234 products"countLabel(2500, "recipient") // "2,500 recipients" Copy
countLabel(1, "card") // "1 card"countLabel(1234, "product") // "1,234 products"countLabel(2500, "recipient") // "2,500 recipients"
Format a count with thousands separators and pluralize the associated word.