length - returns the length of the string.
Example: "interview".length => 9;
substring() - returns the substring at the specified location within a String object.
Example: "interview".substring(1) => "nterview";
A subsequence is a sequence that can be derived from a string by removing some or none of the elements without changing the order of it.