prototype  RegExp  class property JS Home  <<  JS Reference  <<  RegExp  <<  prototype

Description

Enables property assignment to objects of type Regexp.

  • Like all class properties prototype should be used on the class rather than an instance of the class.

Syntax

Signature Description
RegExp.prototypeEnables property assignment to objects of type RegExp.

Parameters

None.

Examples

The code below displays RegExp prototype.


alert('RegExp prototype is ' + RegExp.prototype);

Press the button below to action the above code:

Related Tutorials

JavaScript Intermediate Tutorials - Lesson 9 - Regular Expressions

JavaScript Basics

JavaScript Basics

JavaScript Intermediate

JavaScript Intermediate

JavaScript Advanced

JavaScript Advanced

JavaScript Reference

JavaScript Entities

Globals

RegExp

Class Properties
prototype
Instance Properties
constructor
global
ignoreCase
lastIndex
multiline
source
Class Methods
None.
Instance Methods Getters
exec()
test()
toString()
Instance Methods Setters
None.

Statements

Operators