aboutsummaryrefslogtreecommitdiffstats
path: root/tests/benchmarks/declarative/script/data/slot_complex_js.js
blob: 64a1f65daa50e0313808053f6180d42e0a56ba9f (plain)
1
2
3
4
5
6
7
8
function myCustomFunction(n) {
    var a = 1;
    while (n > 0) {
        a = a * n;
        n--;
    }
    return a;
}