Refer to the following code:
Let sampleText = ‘The quick brown fox jumps’;
A developer needs to determine if a certainsubstring is part of a string.
Which three expressions return true for the given substring ?
Choose 3 answers
sampleText.includes(‘fox’);
sampleText.includes(‘ quick ’, 4);
sampleText.includes(‘ Fox ’, 3)
sampleText.includes(‘ fox ’);
sampleText.includes(‘ quick ’) !== -1;
Submit