PageRenderTime 41ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/operator-precedence/index.html

http://github.com/mathiasbynens/mothereffingcssescapes
HTML | 14 lines | 14 code | 0 blank | 0 comment | 0 complexity | d08b9efeed310b84fceb5a9c7650515c MD5 | raw file
  1. <!DOCTYPE html>
  2. <html>
  3. <meta charset=utf-8>
  4. <title>JavaScript operator precedence</title>
  5. <meta name=description content="A JavaScript operator precedence learning tool.">
  6. <h1>JavaScript operator precedence</h1>
  7. <link rel=stylesheet href=eff.css>
  8. <p>Is <code id=a contenteditable>a &lt;&lt; b + 3 * c</code> semantically equivalent to <code id=b contenteditable>a &lt;&lt; (b + 3) * c</code>? <a href=#a%20%3C%3C%20b%20%2B%203%20*%20c%40a%20%3C%3C%20(b%20%2B%203)%20*%20c id=permalink>#</a>
  9. <p><strong id=output>Nope.</strong>
  10. <p id=footer>Made by <a href=https://mathiasbynens.be/>@mathias</a> using <a href=https://github.com/qfox/Zeon>Zeon.js</a> for <a href=http://140byt.es/>@140bytes</a> — <a href=https://github.com/mathiasbynens/mothereff.in>fork this on GitHub!</a></p>
  11. <script src=vendor/Tokenizer.js></script>
  12. <script src=vendor/ZeParser.js></script>
  13. <script src=vendor/Zeon.js></script>
  14. <script src=eff.js></script>