Multiple choice technology web technology

Which of the following refers to the parent of a window object?

  1. window.opener

  2. parent

  3. window.parent

  4. All of the above

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

In JavaScript, window.opener refers to the window that opened the current window, parent refers to the parent frame in a frameset, and window.parent is another way to access the parent window. All three can refer to a parent window depending on the context.