2018-09-30 23:01:58 +01:00
|
|
|
---
|
|
|
|
id: 587d7b8a367417b2b2512b4d
|
|
|
|
title: Use Destructuring Assignment to Pass an Object as a Function's Parameters
|
|
|
|
challengeType: 1
|
2019-08-05 09:17:33 -07:00
|
|
|
forumTopicId: 301217
|
2021-01-13 03:31:00 +01:00
|
|
|
dashedName: use-destructuring-assignment-to-pass-an-object-as-a-functions-parameters
|
2018-09-30 23:01:58 +01:00
|
|
|
---
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
# --description--
|
|
|
|
|
2018-09-30 23:01:58 +01:00
|
|
|
In some cases, you can destructure the object in a function argument itself.
|
2020-11-27 19:02:05 +01:00
|
|
|
|
2018-09-30 23:01:58 +01:00
|
|
|
Consider the code below:
|
2019-05-17 06:20:30 -07:00
|
|
|
|
|
|
|
```js
|
|
|
|
const profileUpdate = (profileData) => {
|
|
|
|
const { name, age, nationality, location } = profileData;
|
|
|
|
// do something with these variables
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2018-09-30 23:01:58 +01:00
|
|
|
This effectively destructures the object sent into the function. This can also be done in-place:
|
2019-05-17 06:20:30 -07:00
|
|
|
|
|
|
|
```js
|
|
|
|
const profileUpdate = ({ name, age, nationality, location }) => {
|
|
|
|
/* do something with these fields */
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
When `profileData` is passed to the above function, the values are destructured from the function parameter for use within the function.
|
|
|
|
|
|
|
|
# --instructions--
|
2018-09-30 23:01:58 +01:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
Use destructuring assignment within the argument to the function `half` to send only `max` and `min` inside the function.
|
2018-09-30 23:01:58 +01:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
# --hints--
|
2018-09-30 23:01:58 +01:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
`stats` should be an `object`.
|
2018-09-30 23:01:58 +01:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
```js
|
|
|
|
assert(typeof stats === 'object');
|
2018-09-30 23:01:58 +01:00
|
|
|
```
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
`half(stats)` should be `28.015`
|
2018-09-30 23:01:58 +01:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
```js
|
|
|
|
assert(half(stats) === 28.015);
|
|
|
|
```
|
2018-09-30 23:01:58 +01:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
Destructuring should be used.
|
|
|
|
|
|
|
|
```js
|
|
|
|
assert(__helpers.removeWhiteSpace(code).match(/half=\({\w+,\w+}\)/));
|
|
|
|
```
|
|
|
|
|
|
|
|
Destructured parameter should be used.
|
|
|
|
|
|
|
|
```js
|
|
|
|
assert(!code.match(/stats\.max|stats\.min/));
|
|
|
|
```
|
|
|
|
|
|
|
|
# --seed--
|
|
|
|
|
|
|
|
## --seed-contents--
|
2018-09-30 23:01:58 +01:00
|
|
|
|
|
|
|
```js
|
|
|
|
const stats = {
|
|
|
|
max: 56.78,
|
|
|
|
standard_deviation: 4.34,
|
|
|
|
median: 34.54,
|
|
|
|
mode: 23.87,
|
|
|
|
min: -0.75,
|
|
|
|
average: 35.85
|
|
|
|
};
|
|
|
|
|
2020-03-04 13:08:54 -06:00
|
|
|
// Only change code below this line
|
2020-01-14 20:47:34 -06:00
|
|
|
const half = (stats) => (stats.max + stats.min) / 2.0;
|
2020-03-04 13:08:54 -06:00
|
|
|
// Only change code above this line
|
2018-09-30 23:01:58 +01:00
|
|
|
```
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
# --solutions--
|
2018-09-30 23:01:58 +01:00
|
|
|
|
|
|
|
```js
|
2019-03-25 19:49:34 +05:30
|
|
|
const stats = {
|
|
|
|
max: 56.78,
|
|
|
|
standard_deviation: 4.34,
|
|
|
|
median: 34.54,
|
|
|
|
mode: 23.87,
|
|
|
|
min: -0.75,
|
|
|
|
average: 35.85
|
|
|
|
};
|
|
|
|
|
|
|
|
const half = ( {max, min} ) => (max + min) / 2.0;
|
2018-09-30 23:01:58 +01:00
|
|
|
```
|