How to delete all numbers after point

How can I do this with Math.round() or some function. My result looking like this 26.200000762939453

Math.round(2.5).toFixed(0);

1 Like

value = parseInt(value)

In a change node:
Screenshot_2019-05-23_10-36-36

Thank you for express answer. It is solved. Regards.

Thanks this worked for me.