aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual/v4/prototype.4.js
blob: 9e4facb540c55cd7d4844ba298b546113a27aa81 (plain)
1
2
3
4
5
6
7
8
9

function Point(x, y) {
    this.x = x
    this.y = y
}

var pt = new Point(10, 20)
print(Point.prototype.isPrototypeOf(pt))