Check out this Pen I made!
Related Posts
How to check for null, undefined, or empty values in JavaScript
Written by Lewis Cianci✏️ As someone with a toddler, it’s surprising just how many things in our life…
一個很小但很好用的 zsh 技巧:修改上一個指令
有時候我剛跑完一個指令,馬上發現其實只需要改其中一小部分。 例如我剛用 ffmpeg 轉了一個影片: ffmpeg -i calligraphy01.mp4 -c:v libx264 -c:a aac calligraphy_good_01.mp4 然後我想用同樣的指令處理下一個檔案: ffmpeg -i calligraphy02.mp4 -c:v libx264…
Checking if a value is a number in Javascript with isNaN()
In Javascript, we have numerous ways to check if something is or is not a number. This is…