Strict mode is enabled in a JavaScript program by adding a special string
constant at the beginning of the program:
"use strict";
Also, you can enable strict mode for a function by placing the string constant
at the beginning of the function definition.
function dodge() {
"use strict&