text is a number js code example
Example 1: Javascript string to int
var myInt = parseInt("10.256"); //10
var myFloat = parseFloat("10.256"); //10.256
Example 2: how to check if a string is an integer javascript
isNaN(num) // returns true if the variable does NOT contain a valid number