这是最好的方式(如果有一个)从数字转换到字符串在Typescript?
var page_number:number = 3;
window.location.hash = page_number;
在这种情况下,编译器抛出错误:
类型'number'不能赋值给类型'string'
因为位置。哈希是一个字符串。
window.location.hash = ""+page_number; //casting using "" literal
window.location.hash = String(number); //casting creating using the String() function
那么哪种方法更好呢?