- trimEnd() : Remove whitespace from the end of a string using JavaScript
- trimRight() : Remove whitespace from the end of a string using JavaScript
- substring() : Extracting characters from a string, between two specified indices using JavaScript
- slice() : Extracting a section of a string and returns it as a new string in JavaScript
- split() : Dividing a string object into an ordered list of substrings and returns them in an array in JavaScript
- charCodeAt() : How to returns an integer between 0 and 65535 representing the UTF-16 code unit at the given index in JavaScript
- charAt() : How to extract single character located at a specified offset in the string using JavaScript
- padStart() : How to pads the current string with another string in JavaScript : Add 0’s to the left of a character.
- trimStart() : Removing whitespace from the beginning of a string using JavaScript
- trim() : Removing whitespace from both ends of a string using JavaScript
- concat() : Merging two or more strings using JavaScript
- toLowerCase() : Converting the entire characters in a string to lowercase
- toUpperCase() : Convert a string to its uppercase form using JavaScript
- replaceAll() : Replacing of all occurrences of a specified string or regular expression using JavaScript
- string.length : Finding string length in JavaScript
Get more articles on Java Script
Read more on Shell and Linux related articles
Refer more on python here : Python