cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Need to share some code when posting a question or reply? Make sure to use the "Insert code sample" menu option. Learn more! X

Rounding in thingworx?

Chao123
11-Garnet

Rounding in thingworx?

Does the toFixed() method not work in thingworx?

1 ACCEPTED SOLUTION

Accepted Solutions

Please try Math.round(value) in your java script to achieve Rounding in ThingWorx.

var result = Math.round(5.56);
//result will be 6

 

View solution in original post

2 REPLIES 2

Please try Math.round(value) in your java script to achieve Rounding in ThingWorx.

var result = Math.round(5.56);
//result will be 6

 

Awesome thanks.

Top Tags