Skip to content

Instantly share code, notes, and snippets.

  • What is ES6?

ECMAScript is the proper name for JavaScript, and ES6 is the newest version of the language.

  • What is Transpilation and how does it relate to ES6?

Transpilation is the conversion of code from one version or language to another at a similar level of abstraction, and it is relevant to ES6 because browsers do not immediately transition to new versions of code, and ES6 will have to be transpiled to ES5 in order to work in current browser versions.

  • Looking at the ES6 Features link below, discuss one update from ES5 and if it seems useful/superfluous.

Testing Homework - Rails/JS

  • Unit Testing

  • Your experience implementing

    Teaspoon was reasonably easy to implement, and seems to maintain similarities to testing frameworks that I'm already familiar with.

  • Were you successful?