typescript convert to string code example
Example 1: typescript convert numer to string
window.location.hash = ""+page_number;
window.location.hash = String(page_number);
Example 2: typescript parse to string
window.location.hash = ""+page_number;
window.location.hash = String(page_number);