Nest all content into snippets
This commit is contained in:
22
snippets/js/s/not.md
Normal file
22
snippets/js/s/not.md
Normal file
@ -0,0 +1,22 @@
|
||||
---
|
||||
title: Logical not
|
||||
type: snippet
|
||||
language: javascript
|
||||
tags: [math,logic]
|
||||
unlisted: true
|
||||
cover: succulent-7
|
||||
dateModified: 2021-01-04T13:04:15+02:00
|
||||
---
|
||||
|
||||
Returns the logical inverse of the given value.
|
||||
|
||||
- Use the logical not (`!`) operator to return the inverse of the given value.
|
||||
|
||||
```js
|
||||
const not = a => !a;
|
||||
```
|
||||
|
||||
```js
|
||||
not(true); // false
|
||||
not(false); // true
|
||||
```
|
||||
Reference in New Issue
Block a user