Public
Edited
Feb 10, 2024
Insert cell
Insert cell
function sum(n) {
if (n == 0) return 0;
return sum(n - 1) + n;
}
Insert cell
Insert cell
sum(3)
Insert cell
sum(6)
Insert cell
Type JavaScript, then Shift-Enter. Ctrl-space for more options. Arrow ↑/↓ to switch modes.

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