Javascript Challenge

Using javascript, output the times tables from 0 - 100 for a specified number to the javascript console.

The bulk of your logic should live inside a method that takes the number you want to see the times table for.

Requirements:

  1. Use at least one function that accepts a number.
  2. Use at least one loop
  3. Output results to the console.
  4. Use the format: 5 * 0 = 0 for your output

If you get stuck, please reach out to Ben for hints and help!