Javascript
//single line comment /* multi line comment*/ // let, const //string, numbers, boolean, null, undefined const name = 'hemanth'; const age = 28; const rating = 4.5; const isCool = true; const x = null; const y = undefined; let z; console.log(typeof name); //strings const name = 'hemanth'; const age = 28; //concatination console.log('my name is '+name+ ' and I am '+ age); //template string console.log(`my name is ${name} and I am ${age}`); const hello = `my name is ${name} and I am ${age}`; console.log(hello); //string functions const s ='hello world'; console.log(s.length); console.log(s.toUpperCase()); console.log(s.toLowerCase()); console.log(s.substring(0, 5)); console.log(s.substring(0,5).toUpperCase()); console.log(s.split('')); const t = 'technology, computers, it, code'; console.log(t.split(', ')); //arrays /* array using constructor, new keyword and something after that means it is called constructor */ const nu...