aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmlformat/data/forOf.qml
blob: 0c3be0d2a2ff826faf70c0b35afa185a01df0712 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import QtQml 2.0

QtObject {
    Component.onCompleted: {
        var list = [[1,2],[3,4],[5,6]];

        for (const [x,y] of list)
            console.log("X: "+x+"; Y: "+y);
        for (let [x,y] of list)
            console.log("X: "+x+"; Y: "+y);
    }
}