JS - Strings
Basic Declaration and initialization
const name = "gambit"
const repoCount = 10
console.log('Hello my name is '+name+' and my repo count is '+repoCount);
Output
Hello my name is gambit and my repo c
javascriptfromscratch.hashnode.dev3 min read