Public
Edited
Feb 15, 2023
Paused
16 stars
Insert cell
Insert cell
Insert cell
bookMutable = loadNotebook('@observablehq/introduction-to-mutable-state', {invalidation})
Insert cell
bookInputs = loadNotebook('@observablehq/hello-inputs', {invalidation})
Insert cell
Insert cell
Insert cell
bookMutable.width
Insert cell
2 * (await bookMutable.width)
Insert cell
Insert cell
yield* bookMutable.width
Insert cell
{
for await(const value of bookMutable.width) {
yield 2 * value;
}
}
Insert cell
Insert cell
iterate(bookMutable.width, value => 2 * value)
Insert cell
Insert cell
yield* bookMutable.from('width', 'counterFives')
Insert cell
{
for await(const [theWidth, counter] of bookMutable.from('width', 'counterFives')) {
yield `width × 2: ${2 * theWidth}, counter: ${counter}`;
}
}
Insert cell
iterate(
bookMutable.from('width', 'counterFives'),
([theWidth, counter]) => `width × 2: ${2 * theWidth}, counter: ${counter}`
)
Insert cell
Insert cell
Insert cell
htl.html`<button ${{
onclick: () => bookMutable['mutable counterEven'] = 999 // This is async.
}}>Set counterEven value to 999`
Insert cell
Insert cell
yield* bookMutable.counterEven
Insert cell
Insert cell
yield* bookMutable.counter
Insert cell
Insert cell
bookMutable['mutable counterEven']
Insert cell
Insert cell
bookInputs.counter = 3
Insert cell
Insert cell
Insert cell
bookInputs['viewof sport']
Insert cell
Insert cell
yield* bookInputs.sport
Insert cell
Insert cell
yield* bookInputs.selectedAthletes
Insert cell
Insert cell
Insert cell
viewof localInput = Inputs.radio(['golf', 'judo'], {value: 'golf', label: 'Local'})
Insert cell
Insert cell
// Overridden viewof
yield* bookInputs.with({'viewof sport': viewof localInput}).selectedAthletes
Insert cell
Insert cell
Insert cell
bookInputs['viewof weight']
Insert cell
Insert cell
Inputs.bind(
Inputs.range([0, 200], {step: 1}),
await bookInputs['viewof weight'],
invalidation
)
Insert cell
Insert cell
yield* bookInputs.weight
Insert cell
Insert cell
yield* bookMutable.with({
count: iterate(bookInputs.weight)
}).doubleCount
Insert cell
Insert cell
Insert cell
`${bookInputs}`
Insert cell
Insert cell
`${bookInputs.sports}`
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
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