In JavaScript, the 'use strict' directive should come first in the file, before any other statements including imports, to enable strict mode for the entire script.
'use strict' must be applied to an entire script or a single function. By placing it at the top of your script, it enforces strict parsing and error handling.
Collection
[
|
...
]