JSLint:如何解决预期的' \ s'而是看到' &#39 ;.警告

时间:2017-11-06 11:20:06

标签: javascript jslint

以下是我的js代码,我得到预期' \ s'而是看到' ' 即可。错误。有人可以帮我解决这个错误。

  

osVersion = / Mac OS X(10 [._ \ d] +)/。exec(nAgt)[1];

1 个答案:

答案 0 :(得分:1)

由于JSLint抱怨没有 regexed的空格osVersion = /Mac\sOS\sX\s(10[._\d]+)/.exec(nAgt)[1]; 替换所有空格

$a = "JOHN";
$b = "SMITH";
$c = "";
$length = strlen($a)> strlen($b) ? strlen($a) : strlen($b);

echo "Given String is ". $a."--".$b."<br>"."Output : ";

for ($i = 0; $i <= $length; $i++) {

   $c.= substr($a, $i,1);    
   $c.= substr($b, $i,1);
}
echo $c;