How to Change the decimal representation

HI @vuedesprit , have you tried this?

function toUsFormat(x){   
    return x.toLocaleString('en-US')
}
console.log(toUsFormat(123456.789))

Expect:

123,456.789