convert string to number js Number(str) code example
Example 1: Javascript string to int
var myInt = parseInt("10.256"); //10
var myFloat = parseFloat("10.256"); //10.256
Example 2: from string to number js
var text = '42px';
var integer = parseInt(text, 10);
// returns 42