Answers for "javascript string checl if text included at begining of words"

0

check if js string begin with word

const str1 = 'Saturday night plans';

console.log(str1.startsWith('Sat'));
// expected output: true

console.log(str1.startsWith('Sat', 3));
// expected output: false
Posted by: Guest on July-30-2020

Code answers related to "javascript string checl if text included at begining of words"

Code answers related to "Javascript"

Browse Popular Code Answers by Language