I was just playing with the native replace method for strings in javascript. Is there any thing like groups of groups. If not, how are groups ordered in string where a group encapsulates other open and closed parentheses (potential groups). For example,
var string = "my name is name that is named man".replace(/((name)|(is)|(man))/g, "$1");
What will the group references $1, $2, $3, and $4 be. I already tried it on my local computer (on firebug) but it gives me results that I can't readily understand. A clear explanation on this will be appreciated!!

"my name is name that is named man".replace(/((name)|(is)|(man))/g, function () { console.log(arguments); });– Matt Ball Jul 28 '11 at 2:12