how to get integer from string in javascript code example
Example 1: Javascript string to int
var myInt = parseInt("10.256"); //10
var myFloat = parseFloat("10.256"); //10.256
Example 2: js get number from string
thenum = "foo3bar5".match(/\d+/)[0] // "3"