Answers for "typescript convert numer to string"

2

number to string typescript

var num = new Number(10); 
console.log(num.toString()); 
console.log(num.toString(2)); 
console.log(num.toString(8));
Posted by: Guest on November-20-2020
0

typescript convert numer to string

window.location.hash = ""+page_number; 
window.location.hash = String(page_number);
Posted by: Guest on May-05-2021

Code answers related to "typescript convert numer to string"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language