angular 数字类型转字符串问题

var  a=123;

console.log(typeof a);   //  number;

 

var  a=123+"";

console.log(typeof a);   //  string;

转载于:https://www.cnblogs.com/xfdmb/p/6346575.html

你可能感兴趣的:(angular 数字类型转字符串问题)