Notes
In Apex, the startsWith()
method is used to return true if the given string starts with the prefix provided in the method.
Here's an example:
String myStr = 'Learning Apex is easy.';
Boolean result = myStr.startsWith('Learning');
System.debug(result);
Output: true
Video
Video does not exists.