RSRaj Shendeinsupernova-raj.hashnode.dev·Jan 2, 2023 · 1 min readHow to Install MongoDB on Linux ?Run the above commands to install MongoDB on Linux. wget -qO - https://www.mongodb.org/static/pgp/server-6.0.asc | sudo apt-key add - If Respond after this command is not ok then - Install gnupg and its required libraries using the following command...00
RSRaj Shendeinsupernova-raj.hashnode.dev·Dec 30, 2022 · 2 min readLet, Var, Const in javascriptModern javascript (ES6) introduces a new keyword for the declaration of variables let and const which is an addition to the var keyword in javascript. In this article, i will introduce you to the basic difference between the let, var, and const keywo...00