Javascript isn’t too difficult even if you haven’t had much experience with it. Defining functions and variables are pretty easy because of the builtins of Javascript. They can be easily defined by putting a var, or a function before the code so that it is defined as the element that they are. It wasn’t all that difficult to code a lot of the things on Javascript once the basic syntax was understood. The timetable challenge wasn’t too difficult; I had to just put a loop that multiplied every number from 1 to 12 with the number inputted and then print it. I just setup a variable for the input, and then setup another variable converting the input into an integer. I then put the input into a loop that multiplied the input by all numbers from 1-12. I didn’t get to the password challenge.