Vérifiez si le tableau des chaînes javascript

export const isStringArray = (array) => array.every((val) => typeof val === 'string');
Husnain Syed