You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So I realize I could do window.x = 'hi'Enteralert x
But I'm used to doing things like x = 'tempVal'Enteralert x
Unfortunately, x is undefined in the second command. Is there any way to have the entire console share the same scope across multiple commands? Having to type the entire set of commands in one execution before I can even see what's going to happen is a bit limiting.
The text was updated successfully, but these errors were encountered:
So I realize I could do
window.x = 'hi'
Enteralert x
But I'm used to doing things like
x = 'tempVal'
Enteralert x
Unfortunately,
x
is undefined in the second command. Is there any way to have the entire console share the same scope across multiple commands? Having to type the entire set of commands in one execution before I can even see what's going to happen is a bit limiting.The text was updated successfully, but these errors were encountered: