10 Practical JavaScript Tricks: dev.to/zandershirley/…
@JavaScriptDaily I am not a JavaScript wizard, but I am afraid that some of this advice is outdated and currently not that practical.
@JavaScriptDaily Free Tip: Make dev.to mobile friendly first. Half the code can't be seen because it has to be scrolled horizontally, and even if I scroll all the way, not all the code can be seen!
@JavaScriptDaily omg, please don't read this article if you're newbie in js. most of tricks are very bad practice
@JavaScriptDaily Important JavaScript Concepts You MUST Know designmycodes.com/javascript/jav…
@JavaScriptDaily Cool tricks, but I don't think the comma operator is practical
@JavaScriptDaily 1. You can use `Array.from(arguments)` or just `[...arguments]`; 4. Default arguments: `function doSomething(arg1 = 32) {}`; 5. It is difficult to imaging why you may need comma operator in such cases. 🙂
@JavaScriptDaily Most of those "practical" tricks are bad practices