Showing posts with label GIT & GITHUB. Show all posts
Showing posts with label GIT & GITHUB. Show all posts

Sunday, October 31, 2021

git and github commands

 generate ssh key

for windows user

go to gitbash and use command

ssh-keygen -t rsa -b 4096 -C "youremail@example.com"

JavaScript Functions as JavaScript Variables

In Javascript instead of declaring and executing a function in two different steps. for example step 1 -  function add(a,b){return a+b;} ste...