Jak ustawiaj typ wartości ciągu na numer w JS

var text = '42px';
var integer = parseInt(text, 10);
// returns 42
Mohamad