Answers for "how to check js string"

16

string check javascript

if (typeof myVar === 'string') { /* code */ };
Posted by: Guest on July-23-2020
4

includes in javascript

var colors = ['yellow', 'red', 'pink'];
var string = 'yellow and red are pretty cool';

// outputs false
console.log(colors.include('blue');
// outputs true
console.log(string.includes('yellow');
Posted by: Guest on October-04-2020

Code answers related to "how to check js string"

Code answers related to "Javascript"

Browse Popular Code Answers by Language