Multiple choice javascript

You plan the coding of your project. When must the object references be ready?

  1. at run time

  2. at compile time

  3. at debug time

  4. at code time

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

Object references in JavaScript are resolved at runtime, not compile time, because JavaScript is an interpreted language. The actual object being referenced may not be known until the code executes dynamically.