24.
Which TypeScript compiler option can be used to disable implicit variable type assignment?
--noImplicitThis
--strict
--strictNullChecks
--noImplicitAny
Correct: D
The --noImplicitAny compiler option in TypeScript disables implicit any type assignment. With this option enabled, every variable must have an explicit type annotation, helping catch potential type-related errors.