In this post I will share with you JavaScript tips you won’t find in most tutorials. Enjoy!
What is JavaScript?
JavaScript is a scripting language that enables you to create dynamically updating content, control multimedia, animate images, and so much more.
Let's jump to the tips!
* Shorten an array
You can set the length property to shorten an array.
* Short-circuits conditionals
If you have to execute a function only if condition is true, you can use short-circuit.
* Show specific console.table() columns
By default, console.table()
lists all elements in each row. You can use the optional “columns” parameter to select a subset of columns to display:
* Remove duplicate elements from the array:
* Convert a string to number:
* Convert a number to string:
You can find more HTML/CSS/JS Tips here: github.com/MarkoDenic/awesome-html-css-js-tips
If you liked this article, be sure to ❤️ it.
This article is a repost from my blog. Find the original post here: JavaScript Tips.
Let's keep in touch:
Blog: markodenic.com
Twitter: @denicmarko
Github: github.com/MarkoDenic
Codepen: codepen.io/denic
Excellent tips. I remember learning how to short circuit through counting substrings of a string like so:
Changed my life.
Never knew about console.table(), that is just awesome.
Appreciate you sharing