blob: a24cfc6169846f97a409f2f5e2e4f60fd03e17c8 [file] [log] [blame]
var o = {
number: 123,
fun: function() {},
string: "ciao",
array: [],
}
print(typeof o)
print(typeof o.number)
print(typeof o.fun)
print(typeof o.array)