D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
PGriner
Full window
Github gist
Leveraging Web Data Assignment 5
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Leveraging Web Data Class 5 Homework</title> </head> <body> <h1 style="text-align: center;"> Leveraging Web Data Class 5 Homework</h1> <p>Answer the following questions about JavaScript. These questions may require you to do your own research to determine the best answer.</p> <br> <p>Developer Resources</p> <ul> <li><a href="https://www.google.com" target="_blank">Google</a></li> <li><a href="https://www.stackoverflow.com" target="_blank">Stack Overflow</a></li> <li><a href="https://www.w3schools.com/" target="_blank">W3 Schools</a></li> <li><a href="https://devdocs.io/javascript/" target="_blank">Dev Docs</a></li> </ul> <br> <h2>Basic</h2> <h3>Append your name to the text between the title tags.</h3> <br> <h3>Describe the purpose of JavaScript, how might it relate to web mapping and visualization?</h3> <p>Your answer here</p> <br> <h2>Variables</h2> <h3>What is a variable? Provide two examples of using a variable.</h3> <p>Your answer here</p> <br> <h3>Write out how to assign the variable x equal to 10.</h3> <p>Your answer here</p> <br> <h2>Operators</h2> <h3>Describe the differences between =, ==, and ===.</h3> <p>Your answer here</p> <br> <h3>What would be the result of "Hello " + 10? Why?</h3> <p>Your answer here</p> <br> <h2>Loops</h2> <h3>What is the purpose of a for loop? Describe in detail the advantages of using the for loop.</h3> <p>Your answer here</p> <br> <h3>Describe the while loop in JavaScript.</h3> <p>Your answer here</p> <br> <h2>If/Else Statements</h2> <h3>What are the three <a href="https://www.w3schools.com/js/js_if_else.asp" target="_blank">conditional statements</a>? Describe how each are used.</h3> <p>Your answer here</p> <br> <h3>What is the difference between using two if statements together compared to using an if statement then an else if statement or else statement?</h3> <p>Your answer here</p> <br> <script type="text/javascript"> // // code goes below this line </script> </body> </html>