Apply new format to snippets and template
This commit is contained in:
@ -5,7 +5,7 @@ tags: function,logic,beginner
|
||||
|
||||
Returns a function that is the logical complement of the given function, `fn`.
|
||||
|
||||
Use the logical not (`!`) operator on the result of calling `fn` with any supplied `args`.
|
||||
- Use the logical not (`!`) operator on the result of calling `fn` with any supplied `args`.
|
||||
|
||||
```js
|
||||
const complement = fn => (...args) => !fn(...args);
|
||||
|
||||
Reference in New Issue
Block a user