Terminal
Code
https://getcssscan.com/css-box-shadow-examples
https://www.youtube.com/results?search_query=react+native+freecodecamp
https://www.youtube.com/watch?v=jS4aFq5-91M&t=5559s
DOM
- Document object model
- Represents HTML in a tree like data structure
- Can be used to modify or change the behaviour of HTML
- Also can be used to update CSS
JSON (JavaScript Object Notation):
- A way to represent data
- Basically just a javascript object converted to a string
- Example:
{ a: 2 } -> “{ “a”: 2 }”
- In Javascript, JSON.stringify can be used to convert an object to JSON string
- JSON.parse can be used to convert a JSON string to object
Promise
- Special type of object
- Has three states: pending, resolved & rejected
- Is Async (
.then, .catch
)