我有一个正则表达式:
return (str+'').replace(/^(.)|\s(.)/g, function ( $1 ) { return $1.toUpperCase ( ); } );
我收到以下 jslint 错误:
Expected String instead saw ""
我该如何纠正这个错误?
我有一个正则表达式:
return (str+'').replace(/^(.)|\s(.)/g, function ( $1 ) { return $1.toUpperCase ( ); } );
我收到以下 jslint 错误:
Expected String instead saw ""
我该如何纠正这个错误?