8. What statement would be added to your JavaScript file to ensure that your code is strictly interpreted? code example
Example 1: use strict javascript
// File: myscript.js
'use strict';
var a = 2;
....
Example 2: use strict javascript
function doSomething() {
'use strict';
...
}