다음과 같습니다
var ary = /h/ ('hello') ;
alert(ary);
IE6/7/8/9에서 보고된 오류
Firefox/Safari/Chrome/Opera의 최신 버전이 모두 나타납니다. "h"
위 작성 방법은
var ary = /h /.exec('hello');
즉, Firefox/Safari/Chrome/Opera에서 exec 메소드를 사용하는 경우 브라우저에서는 "exec"를 제거하고 "regular direct()" 메소드를 사용할 수 있습니다.
IE10 Platform Preview에서는 아직 이 약어를 지원하지 않습니다.
관련:
https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/RegExp/exec