A checklist for learning React - Fork it and start ticking off topics!
- use-cases of React
- JavaScript basics for React
- immutability / data management without mutations
- updating properties of objects
const yummlyAdd = (y,u,mm,ly, add) => { // Yummly Add! | |
const numbers = (x, y) => ~~x + ~~y; // MATH! | |
y[u](mm[ly][add](numbers)); // GUI! Code "readibility"! | |
process.exit(numbers); // exit code! | |
} | |
yummlyAdd(console, 'log', process, 'argv', 'reduce'); | |
/* Examples: |
This is a really basic "todo list" demo built with Mithril.
It's largely an ES6/ES2015 port of the Mithril's Getting Started guide, with a bit of sugar and opinion thrown in to make it look and feel a lot like React.
In this case we're using Babel's JSX transform to convert inline XML into hyperscript (just nested calls to Mithral's m()
function).
A Pen by Jason Miller on CodePen.