如何获取一个js对象的类型名称可以利用typeof来查看,如:var a="d"alert(typeof a)stringvar a=2alert(typeof a)numbervar a=truealert(typeof a)bool2023-03-01JavaScript110