JavaScript – RegExp multiline Property
The JavaScript RegExp multiline property returns “true” if the m modifier is set, and “false” if it is not set.
The JavaScript RegExp multiline property returns “true” if the m modifier is set, and “false” if it is not set.
The JavaScript RegExp source property returns the text of the RegExp pattern.
The JavaScript RegExp test() method tests for a match in a string. If a match is found, it returns “true”, otherwise it returns “false”.
The JavaScript RegExp toString() method returns the string value of the regular expression.
The screen.availHeight property returns the height of the user’s screen in pixels minus any interfaces like the Windows Taskbar or Mac Dock.
The screen.availWidth property returns the width of the user’s screen in pixels minus any interfaces like the Windows Taskbar or Mac Dock.
The screen.colorDepth property returns the screen’s color depth in bits per pixel.
The screen.height property returns the total height of the user’s screen in pixels.
The screen.pixelDepth property returns the screen’s color depth in bits per pixel.
The String charAt() method returns the character at a specified position in a string.
The screen.width property returns the total width of the user’s screen in pixels.
The String charAt() method returns the Unicode (UTF-16) of the character at a specified position in a string.
The String codePointAt() method returns the Unicode of the character at a specified position in a string.
The String concat() method joins two or more strings, returning a new string, without changing the existing strings.
The String constructor property returns the function that created the String prototype.
The String endsWith() method returns true if a string ends with a specified string, if not, it returns false. The method is case sensitive.
The String.fromCharCode() method converts Unicode values to characters.
The String includes() method returns “true” if a string contains a specified string, if not, it returns “false”. The method is case sensitive.
The String indexOf() method returns the position of the first occurrence of a value in a string, and returns -1 if the value is not found.
The String lastIndexOf() method returns the position of the last occurrence, searching from the end to the beginning, of a specified value in a string.