Как проверить, является ли ввод string javascript

let value = 'abc';
if (typeof value === 'string') {
  // it is a string
}
PeeBee!