x
 
<html>
<body>
<script type="text/javascript">
var str = "Visit W3School.org.cn";
var patt1 = new RegExp("s","g");
if(patt1.global)
  {
  document.write("Global property is set");
  }
else
  {
  document.write("Global property is NOT set.");
  }
</script>
</body>
</html>