Currently in my JavaScript code, I have the equation a:bc = 9.
Upon executing `console.log(bc)`, it correctly shows 9.
However, if I try to `console.log(a)`, I receive an error stating that "a" is not defined.
Can someone provide clarification on what is causing this issue?