0 votes
in JavaScript by
The JavaScript global execution context creates two things for you: the global object, and the "this" keyword.
  • A: true
  • B: false
  • C: it depends

1 Answer

0 votes
by

Answer: A

The base execution context is the global execution context: it's what's accessible everywhere in your code.

...