有很多方法可以判断数据是否是数组或字符串,以下列举一些常见的方法:
1.通过typeof操作符判断数据类型,如果为“string”,则数据为字符串;如果为“object”,则需要进一步判断是否为数组。
function isStringOrArray(data) {
if (typeof data === "string") {
console.log("数据为字符串");
} else if (typeof data === "object") {
if (Array.isArray(data)) {
console.log("数据为数组");
}
}
}
2.使用instanceof操作符判断数据类型,如果为String,则数据为字符串;如果为Array,则数据为数组。
function isStringOrArray(data) {
if (data instanceof String) {
console.log("数据为字符串");
} else if (data instanceof Array) {
console.log("数据为数组");
}
}
3.使用Array.isArray()方法判断数据是否为数组。
function isStringOrArray(data) {
if (Array.isArray(data)) {
console.log("数据为数组");
} else {
console.log("数据为字符串");
}
}
4.利用正则表达式判断数据是否为字符串。
function isStringOrArray(data) {
if (/^[a-zA-Z]+$/.test(data)) {
console.log("数据为字符串");
} else {
console.log("数据为数组");
}
}