Quiz: JavaScript Fundamentals for React
Test your knowledge of JavaScript fundamentals for React.
We'll cover the following...
We'll cover the following...
Technical Quiz
1.
(Select all that apply.) Which statements are true about let
and const
?
A.
Both let
and const
are block-scoped.
B.
const
variables cannot be reassigned, but their content (like objects) can be mutated.
C.
Variables declared with let
are hoisted but not initialized.
1 / 12
...