- Name 5 Javascript UI Frameworks (other than React)
- Sencha Ext JS
- Agular - uses TypeScript
- Vue
- Ember
- Svelte
- What’s the difference between a framework and a library?
- Framework - like a skeleton, the application fills out the rest. It provides an envorionemtn for the code to run.
- Library - provide operations that can be used by the application.
- source: stackoverflow.com
- Rendering
- converting code into an interactive user interface
- Templates
- pre-defined UIs that can typically be customized with additional code
- State
- A JS object that represents the components current condition.
- Objects that update their values based on user input.
- When a state object value changes, the component re-renders.
- source: