phpの配列の判定
gettypeを使えば簡単に判定できる
$array1 = [1,2,3];
echo gettype($array1); // array
jsの配列の判定
間違い. typeofを使うと判定はできるが、配列がオブジェクトになってしまう
let array2 = [1,2,3];
console.log(typeof this.array2); // Object
正解. instanceofを使って、正誤を判定する
let array3 = [1,2,3];
console.log(this.array3 instanceof Array); // true
何か間違いやアドバイスがあれば教えてもらえると幸いです。