Quero saber se uma string começa com o caractere / string especificado ou termina com ela no jQuery.
Por exemplo:
var str = 'Hello World';
if( str starts with 'Hello' ) {
alert('true');
} else {
alert('false');
}
if( str ends with 'World' ) {
alert('true');
} else {
alert('false');
}
Se não houver nenhuma função, existe alguma alternativa?