Your review sheet can be in any digital format you want, a word document, a google doc, a markdown file… whatever you want! Submissions will be done via email.
📢 📢 NOTE: This is not all what we cover in the class so feel free to customize your own sheet and add more content
-
- How to declare a variable: (code)
// write the syntax
- How to console.log the value of a variable: (code)
// write the syntax
- How to declare a variable: (code)
-
-
- How to use the
"=="
operator:write a definition
- How to use the
"==="
operator:write a definition
- How to use the
">"
operator:write a definition
- How to use the
-
// write the syntax
-
-
- How you declare a function:
// write the syntax
- This is the other way to declare a function:
// write the syntax
- This is a function that adds 4 to any number:
// write the syntax
- This is a function that capitalizes any word:
// write the syntax
- We use functions because:
write a definition
- How you declare a function:
-
-
- A string is:
write a definition
- You can capitalize a string by:
// write the syntax
- Concatentation is:
write a definition
- An example of concatenation:
// write the syntax
- A string is:
-
- The
%
operator is:write a definition
- Here is an example of the
%
operator in use:// write the syntax
- The
-
- An index is: (definition)
- You can access an element in an array like this: (code)
- Map:
- .map is an array method that:
write a definition
- An example of map is:
// write the syntax
- .map is an array method that:
- Filter:
- .filter is an array method that:
write a definition
- An example of filter is:
// write the syntax
- .filter is an array method that:
- forEach:
- .forEach is an array method that:
write a definition
- An example of forEach is:
// write the syntax
- .forEach is an array method that:
-
- How to access a property
// write the syntax
- How to access a property
-
-
- how to make for loop
// write the syntax
- how to make for loop
-
// write the syntax
-
// write the syntax
-
// write the syntax
-
// write the syntax