Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
</body>
</html>
 
console.log(/p.*g/.test('programming')); // true
console.log(/p.*g/.test('pickles')); // false
var re = /quick\s(brown).+?(jumps)/ig;
var result = re.exec(
  'The Quick Brown Fox Jumps Over The Lazy Dog'
);
console.log(result);
// ["Quick Brown Fox Jumps", "Brown", "Jumps"]
console.log(result.index); // 4
console.log(result.input);
// "The Quick Brown Fox Jumps Over The Lazy Dog"
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
ImpressiveWebspro
0viewers