angular 数字类型转字符串问题

var  a=123;

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

var  a=123+"";

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

全部教程http://each.sinaapp.com/angular/index.html
原文地址:https://www.cnblogs.com/xfdmb/p/6346575.html