typecast number to string in typescript code example
Example 1: number to string typescript
var num = new Number(10);
console.log(num.toString());
console.log(num.toString(2));
console.log(num.toString(8));
Example 2: typescript convert numer to string
window.location.hash = ""+page_number;
window.location.hash = String(page_number);