functionevalCantModifyScopeInStrictMode() {'use strict'; // ⭐️ strict mode// ---------------------------------------------------------------// ⭐️ in strict mode, `eval` doesn't introduce new variables into// the surrounding scope, they're local to the script itself.eval("var b = 'bbb!';");