- Explain what a single page app is and how to make one SEO-friendly.
- Explain the differences on the usage of foo between function foo() {} and var foo = function() {}
- What are some advantages/disadvantages to testing your code?
- What is the purpose of a code style linting tool?
- What is the value of
foo
:var foo = 10 + '20';
- What does this return:
"i'm a lasagna hog".split("").reverse().join("");
- What is inheritance?