I saw some scripts have --!strict on them. Why do they it? what are the advantages and disadvantages of using strict?
1 Like
I know its related to type checking but i can type check even without --!strict, I am asking why people use it? is the an advantage of doing so?
1 Like
It’s to make your code type-safe. strict scripts will emit type errors, which aren’t actually errors, but warnings that tell you when you are possibly misusing some object.
1 Like
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.