What value is obtained when executing the following code?
let i = 0; while (i <= 3) { i++; } console.log(i);
4
6
5
3