Giter VIP home page Giter VIP logo

Comments (3)

mathiasbynens avatar mathiasbynens commented on June 15, 2024

Added some tests here: https://mathias.html5.org/tests/javascript/string/ (see the last two tests)

from javascript.

mathiasbynens avatar mathiasbynens commented on June 15, 2024

From https://bugs.ecmascript.org/show_bug.cgi?id=1553#c2:

Behaviour for noctal escapes in strict-mode is different across engines, e.g.
the proposed tests only work in V8 and Presto, other engines report a
strict-mode error (SpiderMonkey/JSC/IE).

EscapeSequence with leading "0":
- sloppy mode
=> accepted in major engines as "\08" == "\0" + "8"

- strict mode
=> accepted in V8/Presto as "\08" == "\0" + "8"
=> SyntaxError in IE/JSC/SpiderMonkey


EscapeSequence without leading "0":
- sloppy mode
=> accepted in major engines as "\8" == "8"

- strict mode
=> accepted in IE/SpiderMonkey/V8/Presto as "\8" == "8"
=> SyntaxError in JSC


OctalInteger
- sloppy mode
=> accepted in major engines as 08 == 8
=> Note: SpiderMonkey reports warning in shell

- strict mode
=> accepted in IE/Presto/JSC/V8 as 08 == 8
=> SyntaxError in SpiderMonkey

from javascript.

mathiasbynens avatar mathiasbynens commented on June 15, 2024

Ref. #9. https://mail.mozilla.org/pipermail/es-discuss/2013-March/029403.html

from javascript.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.