An open API service indexing awesome lists of open source software.

https://github.com/romenrg/kata-converting-integer-to-currency

Converting integer to currency format, kata from codewars.com
https://github.com/romenrg/kata-converting-integer-to-currency

Last synced: 8 months ago
JSON representation

Converting integer to currency format, kata from codewars.com

Awesome Lists containing this project

README

          

# kata-converting-integer-to-currency
Converting integer to currency format, kata from codewars.com

## Description

Write a function that takes an integer in input and outputs a string with currency format.

Integer in currency format is expressed by a string of number where every three characters are separated by comma.

Ex. 123456 -> "123,456"

Input will always be an positive integer, so don't worry about type checking or negative/float values.