Last active
August 29, 2015 14:22
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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