add comma to number
2022年5月1日小于 1 分钟
add comma to number
Question
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.
Code
/**
* @param {number} num
* @return {string}
*/
function addComma(num) {
// your code here
}