profileData is passed to the above function, the values are destructured from the function parameter for use within the function.
half to send only max and min inside the function.
stats should be an object.
testString: assert(typeof stats === 'object');
- text: half(stats) should be 28.015
testString: assert(half(stats) === 28.015);
- text: Destructuring should be used.
testString: assert(code.replace(/\s/g, '').match(/half=\({\w+,\w+}\)/));
- text: Destructured parameter should be used.
testString: assert(!code.match(/stats\.max|stats\.min/));
```