Tuesday, August 21, 2018

Next Generation JavaScript (Part-1)


  • Variable declaration
var oldVariable='shadhin';
let NewVariable="Monir";
console.log(oldVariable);
console.log(NewVariable);
const variableCanotChange=10;
console.log(variableCanotChange);
//variableCanotChange=20;
console.log(variableCanotChange);

Tuesday, April 17, 2018

Git Commands ( Part 03 ) (Remote: GitHub)(Create,Clone,Push,Status,Add,Commit)


  •  To begin, type whoami into the terminal.

Git Commands ( Part 02 ) (Create,Add,Check,Different)

  • Navigate to the "git folder" folder that we created earlier. now  git init tell git to make it a repository. A repository is a storage area where a version control system stores old revisions of files and information about who changed what, when.