How to deploy a Vue.js app with Node.js server on HerokuSo I recently learnt how to deploy an app with a server on Heroku. Previously I had deployed just frontend projects and doing that is easy. But deploying an app with a server was new for me and I found resources on the internet were either old or sca...Feb 21, 2024·3 min read
Nullish coalescing operator (??)The nullish coalescing operator (??) is a logical operator that returns the right hand side of operator (second argument) only when the left hand side (first argument) is null or undefined. In all the other cases it returns the first argument. Lets ...May 11, 2022·3 min read