Use V4 binding for non-final properties where possible
[profile/ivi/qtdeclarative.git] / tests / auto / qml / qqmlecmascript / data / typeOf.js
1 var test1 = typeof a
2
3 var b = {}
4 var test2 = typeof b
5
6 var c = 5
7 var test3 = typeof c
8
9 var d = "hello world"
10 var test4 = typeof d
11
12 var e = function() {}
13 var test5 = typeof e
14
15 var f = null
16 var test6 = typeof f
17
18 var g = undefined
19 var test7 = typeof g
20
21 var h = true
22 var test8 = typeof h
23
24 var i = []
25 var test9 = typeof i