65. add comma to number

JavaScript

medium  - accepted / - tried

Given a number, please create a function to add commas as thousand separators.

addComma(1) // '1'addComma(1000) // '1,000'addComma(-12345678) // '-12,345,678'addComma(12345678.12345) // '12,345,678.12345'

Input are all valid numbers.

Always try to find a better approach.