- I named my directories correctly.
- I named my files correctly.
- I structured my files and directories correctly.
- I made one initial commit.
- I pushed my initial commit to GitHub.
-
There are three main types of lists in HTML: ordered, unordered, and definition. What are their differences?
Ordered lists are lists where each item in the list is numbered.
Unordered lists are lists that begin with a bullet point.
-
If you're using an input element in a form, what attribute controls the behavior of that input?
The
<input>
element is used to create several different form controls. The value of the type attribute determines what kind of input they will be creating. -
What element is used to create a dropdown list?
Reading Chapter 2 (Statements, Variables, Data Types, & Arrays) from JavaScript & jQuery: Interactive Front-End Web Development
-
How do you declare a variable. What does the equals sign really mean in JavaScript? What is it called in JavaScript?
Variables stores the bits of information a script needs to do its job. The equals sign is assignment operators that asigns a value to the variable.
-
There are three big data types in JavaScript: numbers, strings, and booleans. Describe what each of them are.
Reading part of Chapter 3 (Functions & Scope), pages 85-99 from JavaScript & jQuery: Interactive Front-End Web Development
-
If we have a function defined as
function sayHello(){console.log("Hello!")}
, what is the difference between enteringsayHello
andsayHello()
in the console?sayHello()
is correct function name. In round brackets parameters of the function is placed. If the function doesn't have any parameter name of the function is typed with round brackets without any signs inside it. -
What is the difference between function parameters and arguments?
How are you rewarding good behaviour?
Goals and Expectations for the Project (What does each group member hope to get out of this project? What do we want to achieve as a team? How will we know that we're successful?):
- The paired project is due next Thursday. We want to have the majority of it completed by next Monday so that we can have ample time to work with mentors well before the deadline.
In a few sentences, explain what the project was and the scope of your work. Imagine explaining your answer to a technical recruiter or a developer who you’d potentially be interviewing with.
Number guesser doubles is a project with game where 2 persons choose a guess and program compares it with generated random number. For win guess should match with random number. After somebody's win program shows a card with game data: challenger's names, winner's name, random number and game time. In addition this program has buttons for clear forms and reset game and has kind of protection for input data which includes error notifications if submitted inputs are empty, number inputs don't have number value, entered name is not alpha-numeric, range is not defined or defined wrong (min more than max). My scope was working on CSS layout of left section, and adding responsive CSS for all project and functionality of clear, reset and submit buttons: getting