introduction-slides
introduction-slides
Samer Buna
@samerbuna www.jscomplete.com
Basics of JavaScript
- Variables (const/let)
- Classes and functions
- Loops and conditionals
Interactive Labs
- jscomplete.com/learn-javascript
Actual User Interface
Description of
User Interface
React.js
A JAVASCRIPT LIBRARY
FOR BUILDING USER
INTERFACES
Components
- Like functions
- Reusable and composable
- Can manage a private state
Reactive updates
- React will react
- Take updates to the browser
render () { render () {
return ( return (
); )
} );
} }