- A) 1
- B) true
- C) undefined
- D) 0
<script> let myStr; console.log(myStr); </script>
If you run the above code, the output will be "undefined", which is option C) in the multiple choice question.
Explanation: The variable myStr is declared but not initialized, so its value is undefined.
Comments (0)