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