Replace var with const and let
Our [styleguide](https://github.com/airbnb/javascript#references) and linting rules state that we should use `const` and `let` instead of `var`. However back from ancient times we still have some `var`s (along with `eslint-disable` statements). Let's clean them up.
epic