Compare between option
strict and option explicit
Answers
Answered by
4
Answer:
The Explicit option requires that all variables used in the code are declared before they're used. The Strict option requires that variables are declared with a specific type. In other words, the Strict option disallows the use of generic variables that can store any data type.
Similar questions