Try this exercise. Fill in the missing part by typing it in.
The time complexity of the following code is:
1function until(num) {
2    let i = num;
3    while (i > 0) {
4        console.log(i);
5        i -= 1;
6    }
7}
8
9console.log(until(10));Write the missing line below.



