md` ## Redoing yesterday's exercise:
### Task 6-1
- 6-1-1:
- To specify the height of each bar, I should use \`.style()\`, rather than \`.attr()\`. In \`D3.js\`, \`.style()\` is to assign CSS styles to a HTML element. In CSS, we won't use \`style\` because everything is \`style()\`. In HTML, we do use it. For example, \` <div style="height: 75px;"></div>"\`;
- To make the height of each bar correspondes to its data value, I should use \`function(d){return d + "px"}\` rather than \`function(d){return d }\`;
- 6-1-2: To add some space (2px) between bars, I need to use \`margin-right: 2px\` in the CSS (\`div.bar{}\`. To learn more about the differences between \`padding\`, \`border\`, \`margin\`, read [this amazing tutorial](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Box_Model/Introduction_to_the_CSS_box_model);
- 6-1-3:
- First, I need to initilize an empty array using \`dataset = []\`
- In Javascript, \`Math\` is [a global object](https://www.w3schools.com/js/js_math.asp), whereas \`.push()\` is [an array method](https://www.w3schools.com/js/js_array_methods.asp).
- A \`for\` loop: \`for (initialization; test; updata){
}\`
`