Given a sentence and a word, return boolean if the sentence starts with the word.
// input:
const s = 'The gecko climbs on the ceiling', w = 'The'
// output:
true
(Ctrl + ')
Loading...
/* output */
Next(Ctrl + y)
Given a sentence and a word, return boolean if the sentence starts with the word.
// input:
const s = 'The gecko climbs on the ceiling', w = 'The'
// output:
true
/* output */