Published
Edited
Mar 23, 2021
Insert cell
md`# exercise`
Insert cell
d3 = require("d3@6")
Insert cell
d3.range(9)
Insert cell
{
var color = "blue";
color = "black"; // reassign
var color = "pink"; // redeclare
return color
}
Insert cell
{
let color = "blue";
color = "black";
// let color = "pink";
return color
}
Insert cell
{
const color = "blue";
// color = "black";
// const color = "pink";
return color
}
Insert cell
{
const listOfComputerComp = ['apple', 'dell'];
listOfComputerComp.push('compaq');
// listOfComputerComp = [1, 1];
// listOfComputerComp.pop();
return listOfComputerComp;
}
Insert cell
jsFile = {
//Global Scope
let milkyWay = 'I am globally scoped, so you can access me anywhere!';
{ //Block Scope
var earth = 'Earth';
const sun = 'Sun';
let house = 'My house';
}
//UNCOMMENT THESE ONE AT A TIME TO SEE WHAT HAPPENS (REMEMBER TO RECOMMENT THE LINE YOU UNCOMMENTED ALREADY)
return earth;
// return milkyWay
// return house;
// return sun;

}
Insert cell
html`
<div style="width: 900">
<svg id="demo" width="500" height="100" style="background-color: skyblue; display: block; margin: auto">
<rect x="200" y="30" width="100" height="70" style="fill: red"></rect>
</svg>
</div>
`
Insert cell
dataset = [1,2,3,4,5,6]
Insert cell
colors = ["red", "orange", "green", "blue"];
Insert cell
scaleBandColor = {
const svg = d3.create("svg").attr("width", 580).attr("height", 100).style("background-color", "lightblue")
let colors = ["red", "orange", "green", "blue"];
let xScale = d3.scaleBand()
.domain(colors)
.range([25, 555])
.paddingInner([.5]);
let xAxis = d3.axisBottom(xScale)
svg.append("g")
.attr("transform", "translate(0, 70)")
.call(xAxis);
svg.selectAll("rect")
.data(colors)
.join("rect")
.attr("x", d => xScale(d))
.attr("y", 40)
.attr("width", d => xScale.bandwidth())
.attr("height", 30)
.attr("fill", d => d)
return svg.node()
}
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