Como verificar se a entrada é a string javascript

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