qtdeclarative/tests/manual/v4/obj.1.js

9 lines
133 B
JavaScript
Raw Normal View History

2012-05-09 09:04:57 +00:00
var point = { x: 123, y: 321 }
print(point, point.x, point.y)
var obj = {}
obj.x = 123
obj.str = "ciao"
print(obj, obj.str, obj.x)