检查给定的参数是否是一个字符串。
使用 typeof 来检查一个值是否为一个字符串。
typeof
const isString = val => typeof val === 'string';
isString('10'); // true