What are the different forms of CSS?
What is DOM?
What is Bootstrap?
What is ASCII?
- A character encoding standard for electric communication.
What is ANSI?
- Creates standards for the computer industry.
What is UTF-8?
- 8 means it uses 8-bit blocks to represent a character
What tags would you use to create tables?
What tag would you use to create list?
Ordered list - Ol - li Unordered list - Ul - li Description list - Dl - Dt - Dd
What tag would you use to create forms?
What is AJAX
What is OBP?
- Basically, a superset of OOP.
What is DOM Manipulation?
What kind of compiler does JavaScript use/have?
What is Prototypical Inheritance?
Is JavaScript Pass-By-Value or Pass-By-Reference?
What is Type Coercion?
What are the variable scopes in JavaScript?
Global, local, and block scope
What is an anonymous function?
- The function operator can be used anywhere that it is valid to use an expression.
What is a self-invoking function?
What is Hoisting?
What are the data types in JavaScript? (6)
What is Bubbling?
- Event bubbling propagates events from children to parents.
What is Capturing?
Are JS objects mutable or immutable?
- Primitives are immutable.