Quiz: JavaScript Fundamentals for React
Test your knowledge of JavaScript fundamentals for React.
We'll cover the following...
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.
Question 1 of 120 attempted
...
Ask