The RegExp leftContext is deprecated in Javascript 1.5.
This property is the substring upto the character most recently matched; i.e. everything that comes before it, and as a static property, is always used as RegExp.leftContext.
rexp = /[aeiou]+/g
rexp("the fisherman")
document.write(RegExp.leftContext)
rexp("the fisherman")
document.write("<BR>" + RegExp.leftContext)
th
the f
The regular expression consists of one or more vowels. The code searches the string "the fisherman" and matches the 'e' in 'the' printing the substring to the left of it: namely 'th'. Then it searches the same string again from where it ended the previous search (see the lastIndex property), this time matching the 'i' of 'fisherman' and printing the preceding substring 'the f'.
NOTE:
The regular expression in this example uses the flag 'g' to indicate a global search. If it wasn't there, the second search in the above example would start at the beginning of the string producing exactly the same match as the first search: namely 'th'.