dom take value in javascript as number code example
Example 1: Javascript string to int
var myInt = parseInt("10.256"); //10
var myFloat = parseFloat("10.256"); //10.256
Example 2: set value using javascript
document.getElementById("myText").value = "your string";