Multiple choice javascript You plan the coding of your project. When must the object references be ready? at run time at compile time at debug time 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.