# General JavaScript Notes

#### General Object Destructuring Example <a href="#general-object-destructuring-example" id="general-object-destructuring-example"></a>

```
let myObj = {
    name: "Luke",
    age: 25,
    hobbies: "music"
};
let { name, age, hobbies } = myObj;
console.log(name, age, hobbies);    // => Luke 25 music
```

Now the variables listed in between the curly braces are assigned the value of their respective properties in myObj.

#### The order in which the variables are listed in the curly braces doesn't matter. Additionally, we don't have to list all the properties of an object if we only need one or two. <a href="#the-order-in-which-the-variables-are-listed-in-the-curly-braces-doesnt-matter.-additionally-we-dont" id="the-order-in-which-the-variables-are-listed-in-the-curly-braces-doesnt-matter.-additionally-we-dont"></a>

```
console.log(age, name, hobbies);    // => 25 'Luke' 'music'
console.log(hobbies, name, age);    // => music Luke 25
console.log(hobbies, name);    // => music Luke
```

#### General Array Destructuring Example <a href="#general-array-destructuring-example" id="general-array-destructuring-example"></a>

```
let arr = ['Jim', 'Bob', 'Sarah', 'Cassie'];
let [ jim, bob, sarah, cassie ] = arr;
console.log(jim, bob, sarah, cassie); //outputs: Jim Bob Sarah Cassie
```

### Unlike objects, the name we give the variables doesn't matter. Let's change the above example: So, each of the variable names will ONLY count for the index-positions I fetch. <a href="#unlike-objects-the-name-we-give-the-variables-doesnt-matter.-lets-change-the-above-example-so-each-o" id="unlike-objects-the-name-we-give-the-variables-doesnt-matter.-lets-change-the-above-example-so-each-o"></a>

```
let arr = ['Jim', 'Bob', 'Sarah', 'Cassie'];
let [ var1, var2, var3, var4] = arr;
console.log(var1, var2, var3, var4); //outputs: Jim Bob Sarah Cassie
```

#### If I include less variables then there are indexes in the arrays, then just like in Object-destructuring, only that many array element will be included in the returned array, starting from zero-index position and AGAIN without giving any meaning to the the name I give to the variables. So, each of the variable names will ONLY count for the index-positions I fetch. <a href="#if-i-include-less-variables-then-there-are-indexes-in-the-arrays-then-just-like-in-object-destructur" id="if-i-include-less-variables-then-there-are-indexes-in-the-arrays-then-just-like-in-object-destructur"></a>

let arr = \['Jim', 'Bob', 'Sarah', 'Cassie'];

let \[ jim, bob, cassie ] = arr;

console.log(jim, bob, cassie); //outputs: Jim Bob Sarah

### Using Spread operator - It is often used for splitting out a part of an object, but keeping the remaining properties in another object. <a href="#using-spread-operator---it-is-often-used-for-splitting-out-a-part-of-an-object-but-keeping-the-remai" id="using-spread-operator---it-is-often-used-for-splitting-out-a-part-of-an-object-but-keeping-the-remai"></a>

```
let myObj = {
    name: "Luke",
    age: 25,
    hobbies: "music"
};
let { hobbies, ...rest } = myObj;  // => Luke 25 music
console.log(hobbies, rest)  // => music { name: 'Luke', age: 25 }
console.log(hobbies, rest.age)  // => music 25
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://bryan-guner.gitbook.io/my-docs/tools/javascript/general-javascript-notes.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
