Answers for "check if js string begin with word"

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 "check if js string begin with word"

Code answers related to "Javascript"

Browse Popular Code Answers by Language