Skip to content
This repository has been archived by the owner on Sep 28, 2024. It is now read-only.

Commit

Permalink
vault backup: 2023-12-10 12:13:00
Browse files Browse the repository at this point in the history
  • Loading branch information
liamfrazer committed Dec 10, 2023
1 parent 8209681 commit ea414bd
Show file tree
Hide file tree
Showing 7 changed files with 40 additions and 18 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
tags:
- array
- map
---
# array and array methods
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,21 @@ console.log(user) //

* With the class keyword, you can create a "blueprint", that later could be used
* Class names should start with a capital and then methods can be included in
* The `contructor` function can be used to input parameters, then store them in properties of the object
* The `contructor` function can be used to input parameters, then store them in properties of the object

```js
class User {
constructor(name, age) {
this.name = name;
this.age = age;
}
greet() {
console.log("Hello")
}
}

const user1 = new User("Liam", 25);

console.log(user1) // Object { name: "Liam", age: 25 }
user1.greet() // "Hello"
```
33 changes: 16 additions & 17 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,5 @@
# Home

## React
### React - The Complete Guide
#### Getting Started
* [[Why Use React]]
* [[Special Projects Folders]]
#### JavaScript Refresher
* [[import and export]]
* [[functions and parameters]]
* [[objects and classes]]
*
#### React Essentials - Components, JSX, Props, State & More

#### React Essentials - Deep Dive

#### React Essentials - Practice Project

## Learning
* [[Feynman Technique]]
### Ultralearning
Expand All @@ -34,9 +18,24 @@
#### Principle 5 - Retrieval: Test to Learn
* [[How to Practice retrieval]]
* [[What should be Retrieved]]
*
#### Principle 6 - Feedback: Don't Dodge the Punches
#### Principle 7 - Retention: Don't Fill a Leaky Bucket
#### Principle 8 - Intuition: Dig Deep before Building Up
#### Principle 9 - Experimentation: Explore Outside Your Comfort Zone

### The Complete React Guide
#### Getting Started
* [[Why Use React]]
* [[Special Projects Folders]]
#### JavaScript Refresher
* [[import and export]]
* [[functions and parameters]]
* [[objects and classes]]
* [[array and array methods]]
*
#### React Essentials - Components, JSX, Props, State & More

#### React Essentials - Deep Dive

#### React Essentials - Practice Project

0 comments on commit ea414bd

Please sign in to comment.