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

var o = {
    number: 123,
    fun: function() {},
    string: "ciao",
    array: [],
}

print(typeof o)
print(typeof o.number)
print(typeof o.fun)
print(typeof o.array)