how to print an integer with thousand separator?

i am using java script.
How can i separate thousands ?

System.String.Format("{0:n0}", value)
System.String.Format("{0:n}", value)
3 Likes

thanks leftyrighty