Opening the paper…
Figure from the original question paper What will be the output of the following code snippet? let result = ""; for (let i = 0; i < 3; i++) { for (let j = 0; j < 2; j++) { result += " " + i + j + " "; } } console.log(result); Which of the following statements best describes the ephemeral state?