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

Purpose-built for displays of data

Observable is your go-to platform for exploring data and creating expressive data visualizations. Use reactive JavaScript notebooks for prototyping and a collaborative canvas for visual data exploration and dashboard creation.
Learn more