String and String Ops.
Strings in Js is simply text wrapped in quotes. You can use double or single quotes, just be consistent.
let myName = 'Gayatri';
let myFullName = "Gayatri Kumar";
let friendsName = 'Pabo Shivrav';
In string each character is indexed, and can be acce...
geekee.hashnode.dev2 min read