| [ Web Proxy ] |
| Viewing: https://developer.mozilla.org/ja/docs/Web/JavaScript/Reference/Errors/Deprecated_octal_literal | [Back] [Original] |
Get to know MDN better
SyntaxError: "0"-prefixed octal literals and octal escape sequences are deprecated; for octal literals use the \"0o\" prefix instead
8 8 strict SyntaxError ECMAScript 2015 0 "O" (0o or 0O)
"use strict";
03;
// SyntaxError: "0"-prefixed octal literals and octal escape sequences
// are deprecated
"use strict";
"\251";
// SyntaxError: "0"-prefixed octal literals and octal escape sequences
// are deprecated
0 "o" "O" :
0o3;
8 16 :
"\xA9";
| Web Proxy Viewer | New URL | Original Page |