Cómo verificar si la entrada es String JavaScript

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