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


var obj = {
    x: 10,
    y: 20,
    dump: function() { print("hello", this.x, this.y) }
}

print(obj.x, obj.y, obj.dump)
obj.dump()