Is there a way to make a conditional that evaluate a string for being a string?
EX:
if (x === String)
{
console.log(“those are strings”);
}
else if (x != String)
{
console.log(“those are not strings”);
}
or in a more concise way:
“if this variable here IS a string(regardless of the value it has) do this”