Write readable code with object destructuring
Posted on Fri 15 November 2019 in programming • Tagged with javascript
When I started writing Python, I quickly fell in love with keyword and keyword-only arguments because I realized they could make my code much more readable and robust. When I started writing Javascript, I was disappointed that there was no such thing. Until I read about object destructuring.
What is …
Continue reading