install nodejs on ubuntu

C++
step 1: open a termnal
step 2: type the folowing Into a termnal
sudo apt-get update
sudo apt-get install curl gnupg -y
curl -sl https://deb.nodesource.com/setup_13.x | sudo -E bash -
sudo apt-get install -y nodejs

this installs nodeJS v13.12.0sudo apt-get install curl
curl -sL https://deb.nodesource.com/setup_13.x | sudo -E bash -
sudo apt-get install nodejs
# Check node version
node -v 
# v13.9.0
# Also, check the npm version
npm -v 
# 6.13.7//Author: Mohammad Arman Khan
//How To Install Node.js on Ubuntu
1: sudo apt-get update
2: sudo apt-get install nodejs
3: sudo apt-get install npm
4: nodejs -vsudo apt install nodejssudo apt-get install curl
curl -sL https://deb.nodesource.com/setup_13.x | sudo -E bash -
sudo apt-get install nodejs

node -v    #to check if its installed// Enabling NodeSource Repository
// replace %V% with desired major version
curl -sL https://deb.nodesource.com/setup_%V%.x | sudo bash -
// Install using apt-get
sudo apt-get install -y nodejs
// check installed node version
node --version
Source

Also in C++: