Intro
Well working on the workout project I knew that I needed a way to show the data on the screen. The way that I was hoping to show that is with D3. I have heard that it will be a good way to show different graphs and change elements on the done
When doing research I have found that D3 is a lot like Jquery. That you will be able to select items of the dom and target them. This is done with a d3.select(css-selector) vs a $(css-selector). They are close and make this a little bit more understandable. Also when loading the code into your HTML you can directly link to it just like with Jquery. Finally, you can also method chain with D3.
These are some of the things that I'm finding the same while researching D3. there is more to come as I get ready to work on the project some more.