JS-Tips-And-Tricks
JS-Tips-And-Tricks copied to clipboard
A collection of JavaScript tips and tricks 🔥🚀⚡
Minor comment additions for clarity - great resource
Hi If you are interested in creating website to share JS tips and tricks. Let me know, we can create website easily using [docsify.js](https://docsify.js.org/#/) and deploy to github pages. eg...
* Added `recursive function`
I think the markdown is now correct. btw I'm new to markdown formatting.
We want to pass a key to an object that is assigned to variable. Instead of doing ```js const key = "b"; const obj = { a: 1 }; obj[key]...