Created
October 28, 2018 22:56
-
-
Save haldarmahesh/4f7f5559c6bbbd83fdd9d4bb438c0ac5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const [count, setCount] = useState(0); | |
| // e.g const [a, b] = [1, 2] | |
| // The value of a is 1 | |
| // The value of b is 2 | |
| // This is array destructuring |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment