Skip to content

Instantly share code, notes, and snippets.

@pablomdo
Last active August 29, 2015 14:22
Show Gist options
  • Save pablomdo/e30c0465a747732ef989 to your computer and use it in GitHub Desktop.
Save pablomdo/e30c0465a747732ef989 to your computer and use it in GitHub Desktop.
Alguns exemplos de erros que são normalmente omitidos, mas aparecem quando utilizamos o strict mode
// Sem strict mode
(function () {
x = 1; // Tudo bem
delete Object.prototype; // false
function test(a, a, c) { }; // ok
})();
// Com strict mode
(function () {
'use strict';
x = 1; // ReferenceError: x is not defined
delete Object.prototype; // TypeError: Cannot delete property 'prototype' of function Object()
function test(a, a, c) { }; // SyntaxError: Strict mode function may not have duplicate parameter names
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment