Answers for "string to in tjs"

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
0

convert a string to number in javascript

var x = parseInt("1000", 10); // you want to use radix 10
    // so you get a decimal number even with a leading 0 and an old browser ([IE8, Firefox 20, Chrome 22 and older][1])
Posted by: Guest on July-25-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language