--- id: 5d7925380ea76d55b2c97d7b title: Part 103 challengeType: 0 --- ## Description
This is true, so `highPrecedence` might be a pure function. If you inspect it, you can see that it indeed performs no I/O and doesn't use functions like `Math.random()` - so it's pure. Remove the `console.log` statement.
## Instructions
## Tests
```yml tests: - text: See description above for instructions. testString: assert(!code.includes("console.log")); ```
## Challenge Seed
```html ```
### Before Test
```html Spreadsheet
```
### After Test
```html ```
## Solution
```html ```