اختبار: أساسيات JavaScript لـ React
اختبر معلوماتك حول أساسيات JavaScript لـ React.
سنغطي ما يلي...
سنغطي ما يلي...
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
...