判定データの基本タイプを判断するための一般的な方法
7097 ワード
判定データの基本タイプを判断するための一般的な方法 js判定配列の一般的な方法 、アラy.isAray() 、instance of 、constructor 、Object.prototype.toSrtring.call([]) js基本タイプを判断するための一般的な方法 .配列変換文字列 文字列変換配列 js判定配列の常用方法
一、アラy.isAray()
一、アラy.isAray()
Array.isArray([1,2,3]);
二、instance ofvar arr = [1,2,3];
arr instanceof Array
三、constructorvar arr = [1,2,3];
arr.constructor === Array
四、Object.prototype.toSrtring.call([])var arr = [1,2,3];
Object.prototype.toString.call(arr);//”[object Array]”
js判定基本タイプの常用方法Object.prototype.toString.call(null);//”[object Null]”
Object.prototype.toString.call(undefined);//”[object Undefined]”
Object.prototype.toString.call(“abc”);//”[object String]”
Object.prototype.toString.call(123);//”[object Number]”
Object.prototype.toString.call(true);//”[object Boolean]”
配列変換文字列var arr = [1,2,3,4,' ','merge'];
var str = arr.join(',');
console.log(str); // 1,2,3,4, ,merge
文字列行列var str = '1,2,3,4, ,merge';
var arr = str.split(',');
console.log(arr); // ["1", "2", "3", "4", " ", "merge"]
console.log(arr[4]); //