I am newbie to javascript, forgive me if i ask this kind of question
in c# I have :
(float)3772/32767 = 0.115115821
but in javascript i have :
3772/32767 = 0.11511581774346141
I heard there is a function parseFloat but it does not fix my problem
I want the result to be like the c# float result, because in javascript side it brings some noise to my final data, how to cast like a c# float ?