JavaScript String methods and properties
CharAt()
The charAt() method returns the character at the specified index in a string.
const string = "Hello"
console.log(string.chartAt(2) //Output: l
concat()
The concat() method combines two or more strings in a single string
const string1 = "Hel...
tenzinwoz.hashnode.dev2 min read