Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 196 Bytes

is-string.md

File metadata and controls

9 lines (7 loc) · 196 Bytes

Is string

Use typeof to check if a value is classified as a string primitive.

const isString = val => typeof val === 'string';
// isString(10) -> false
// isString('10') -> true