使用原型添加方法给出错误未定义的方法

时间:2013-11-08 19:03:40

标签: javascript oop prototype prototypal-inheritance

我正在尝试通过原型添加方法但是出错了。知道出了什么问题吗?

function Graph() {
  // Code
}

Graph.prototype.render = function() {
  // Code
}

var test_graph = new Graph;
test_graph.render(); // Returns error that function Graph.render isn't defined.

0 个答案:

没有答案