int to string angular code example
Example 1: angular int to string
var x = 3,
toString = x.toString(),
toConcat = x + "";
Example 2: typescript parse to string
window.location.hash = ""+page_number;
window.location.hash = String(page_number);