Answers for "VueJS - check strings is includes in vuejs"

0

VueJS - check strings is includes in vuejs

const string = "foo";
const substring = "oo";

console.log(string.includes(substring)); // true
 Run code snippet
Posted by: Guest on October-19-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language