Variable declaration with "{}" in JavaScript
I saw a code I don't know like "const { props } = this". What is "{}" mean? It is one of syntax in "destructuring assignment" in JavaScript ES6. For example You can rewrite this. const title = post.title const date = post.date const tags = post.tags...
Oct 28, 20191 min read12