Dave Herman: The Future of JavaScript




Mozilla Labs engineer and TC39 representative Dave Herman joined us at YUIConf 2011 to give this keynote talk on the future of JavaScript, covering many of the new features currently under consideration for ES6, the next edition of the ECMAScript standard.

Original source


6 responses to “Dave Herman: The Future of JavaScript”

  1. Thanks for the information, great job…

    Do not make the language application dependent, most of the additions not useful. I like JavaScript it makes no assumptions, after 32 years of development I am trying to learn how to not make assumptions and I am constantly trying to simplify my code (language independent), and I use no abbrivations.

    My recommendations: “structure” “new ByteString()”
    “get function name(…)” “set function name(…)” "read" "write" "open(url-spec or file-spec)"

  2. All hail Pyscript!

    @iglor, because arguments includes all passed-in arguments, including those that are explicitly declared in the function signature. So you have to count your arguments and shift/offset accordingly. Also, unlike 'this', 'arguments' is not a reserved word, which lets people do stupid stuff, like overwrite it.

Leave a Reply