Quiz: JavaScript Fundamentals for React
Test your knowledge of JavaScript fundamentals for React.
Technical Quiz
1.
(Select all that apply.) Which statements are true about let
and const
? Multi-select
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
...