blob: 9e4facb540c55cd7d4844ba298b546113a27aa81 [file] [log] [blame]
function Point(x, y) {
this.x = x
this.y = y
}
var pt = new Point(10, 20)
print(Point.prototype.isPrototypeOf(pt))