标签: javascript object constructor
说我有一个数组 x 和一个构造函数
function Road(footpath,divider,length,lanes){}
和
x[1] = new Road(1,1,1,1);
现在我如何确定x [1]是Road类型的对象?
答案 0 :(得分:4)
像这样简单
if(x[1] instanceof Road) { //Hey, you have a road! }