Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

README.md

Strings Overview

Strings methods

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";

Subsequence

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.