Answers for "convert to numbr type js"

9

javascript convert a number in string

const num = 123; //> type number 123
const str = num.toString(); //> type string "123"
Posted by: Guest on March-30-2020
5

string to int javascript

var text = '42px';
var integer = parseInt(text, 10);
// returns 42
Posted by: Guest on June-15-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language