Published
Edited
Oct 6, 2018
Fork of ReqAck
1 star
Insert cell
Insert cell
Insert cell
fir0 = grender(g => {
const e0 = g('x')();
const e1 = g('=', e0)({capacity: 1});
const e2 = g('=', e1)({capacity: 1});
const e3 = g('=', e2)({capacity: 1});
const e4 = g('=', e3)({capacity: 1});
const sum = g('+',
g('c4', e4)(),
g('c3', e3)(),
g('c2', e2)(),
g('c1', e1)(),
g('c0', e0)()
);

sum()(g('y'))
})
Insert cell
Insert cell
fir1 = grender(g => {
const e0 = g('x')();
const e1 = g('=', e0)({capacity: 1});
const e2 = g('=', e1)({capacity: 1});
const e3 = g('=', e2)({capacity: 1});
const e4 = g('=', e3)({capacity: 1});

const sum = g('+', g('c4', e4)(),
g('+', g('c3', e3)(),
g('+', g('c2', e2)(),
g('+', g('c1', e1)(),
g('c0', e0)()
)()
)()
)()
);

sum()(g('y'))
})
Insert cell
Insert cell
fir2 = grender(g => {
const e0 = g('x')();
const e1 = g('=', e0)({capacity: 1});
const e2 = g('=', e1)({capacity: 1});
const e3 = g('=', e2)({capacity: 1});
const e4 = g('=', e3)({capacity: 1});

const sum = g('+',
g('+',
g('+',
g('+',
g('c4', e4)(),
g('c3', e3)()
)(),
g('c2', e2)()
)(),
g('c1', e1)()
)(),
g('c0', e0)()
);

sum()(g('y'))
})
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more