利用js判断数据是否是数组或字符串的常见方法
作者:琉璃℡初雪
这篇文章主要给大家介绍了关于利用js判断数据是否是数组或字符串的常见方法,其实有很多方法可以判断数据是否是数组或字符串,需要的朋友可以参考下
有很多方法可以判断数据是否是数组或字符串,以下列举一些常见的方法:
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("数据为数组"); } }
总结
到此这篇关于利用js判断数据是否是数组或字符串的常见方法的文章就介绍到这了,更多相关js判断是数组或字符串内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!