const arr: string[] = ['a', 'b', 'c']; //check the type of variable const isArray = Array.isArray(arr); // 👉️ true console.log(isArray) ...
確定! 回上一頁