Articles tagged: String
Found 59 documents
- Glossary/String In any computer programming language, a string is a sequence of characters used to represent text.
- Mozilla/Add-ons/WebExtensions/API/i18n/Locale-Specific_Message_reference Each internationalized WebExtension has at least one file named messages.json that provides ...
- Web/API/ByteString ByteString is a UTF-8 String that corresponds to the set of all possible sequences of bytes. ...
- Web/API/Console/trace Outputs a stack trace to the Web Console.
- Web/API/DOMString DOMString is a UTF-16 String. As JavaScript already uses such strings, DOMString is mapped ...
- Web/API/DOMString/Binary As web applications become more and more powerful, adding features such as audio and video ...
- Web/API/USVString USVString corresponds to the set of all possible sequences of unicode scalar values. USVString ...
- Web/JavaScript/Reference/Global_Objects/String The String global object is a constructor for strings, or a sequence of characters.
- Web/JavaScript/Reference/Global_Objects/String/@@iterator The [@@iterator]() method returns a new Iterator object that iterates over the code points of a ...
- Web/JavaScript/Reference/Global_Objects/String/anchor The anchor() method creates an a HTML anchor element that is used as a hypertext target.
- Web/JavaScript/Reference/Global_Objects/String/big The big() method creates a big HTML element that causes a string to be displayed in a big font.
- Web/JavaScript/Reference/Global_Objects/String/blink The blink() method creates a blink HTML element that causes a string to blink.
- Web/JavaScript/Reference/Global_Objects/String/bold The bold() method creates a b HTML element that causes a string to be displayed as bold.
- Web/JavaScript/Reference/Global_Objects/String/charAt The charAt() method returns the specified character from a string.
- Web/JavaScript/Reference/Global_Objects/String/charCodeAt The charCodeAt() method returns an integer between 0 and 65535 representing the UTF-16 code unit ...
- Web/JavaScript/Reference/Global_Objects/String/codePointAt The codePointAt() method returns a non-negative integer that is the Unicode code point value.
- Web/JavaScript/Reference/Global_Objects/String/concat The concat() method combines the text of one or more strings and returns a new string.
- Web/JavaScript/Reference/Global_Objects/String/endsWith The endsWith() method determines whether a string ends with the characters of another string, ...
- Web/JavaScript/Reference/Global_Objects/String/fixed The fixed() method creates a tt HTML element that causes a string to be displayed in fixed-pitch ...
- Web/JavaScript/Reference/Global_Objects/String/fontcolor The fontcolor() method creates a font HTML element that causes a string to be displayed in the ...
- Web/JavaScript/Reference/Global_Objects/String/fontsize The fontsize() method creates a font HTML element that causes a string to be displayed in the ...
- Web/JavaScript/Reference/Global_Objects/String/fromCharCode The static String.fromCharCode() method returns a string created by using the specified sequence ...
- Web/JavaScript/Reference/Global_Objects/String/fromCodePoint The static String.fromCodePoint() method returns a string created by using the specified ...
- Web/JavaScript/Reference/Global_Objects/String/includes The includes() method determines whether one string may be found within another string, ...
- Web/JavaScript/Reference/Global_Objects/String/indexOf The indexOf() method returns the index within the calling String object of the first occurrence ...
- Web/JavaScript/Reference/Global_Objects/String/italics The italics() method creates an i HTML element that causes a string to be italic.
- Web/JavaScript/Reference/Global_Objects/String/lastIndexOf The lastIndexOf() method returns the index within the calling String object of the last ...
- Web/JavaScript/Reference/Global_Objects/String/length The length property represents the length of a string.
- Web/JavaScript/Reference/Global_Objects/String/link The link() method creates a string representing the code for an a HTML element to be used as a ...
- Web/JavaScript/Reference/Global_Objects/String/localeCompare The localeCompare() method returns a number indicating whether a reference string comes before ...
- Web/JavaScript/Reference/Global_Objects/String/match The match() method retrieves the matches when matching a string against a regular expression.
- Web/JavaScript/Reference/Global_Objects/String/normalize The normalize() method returns the Unicode Normalization Form of a given string (if the value ...
- Web/JavaScript/Reference/Global_Objects/String/padEnd The padEnd() method pads the current string with a given string (eventually repeated) so that ...
- Web/JavaScript/Reference/Global_Objects/String/padStart The padStart() method pads the current string with a given string (eventually repeated) so that ...
- Web/JavaScript/Reference/Global_Objects/String/prototype The String.prototype property represents the String prototype object.
- Web/JavaScript/Reference/Global_Objects/String/quote The non-standard quote() method returns a copy of the string, replacing various special ...
- Web/JavaScript/Reference/Global_Objects/String/raw The static String.raw() method is a tag function of template literals, similar to the r prefix ...
- Web/JavaScript/Reference/Global_Objects/String/repeat The repeat() method constructs and returns a new string which contains the specified number of ...
- Web/JavaScript/Reference/Global_Objects/String/replace The replace() method returns a new string with some or all matches of a pattern replaced by a ...
- Web/JavaScript/Reference/Global_Objects/String/search The search() method executes a search for a match between a regular expression and this String ...
- Web/JavaScript/Reference/Global_Objects/String/slice The slice() method extracts a section of a string and returns a new string.
- Web/JavaScript/Reference/Global_Objects/String/small The small() method creates a small HTML element that causes a string to be displayed in a small ...
- Web/JavaScript/Reference/Global_Objects/String/split The split() method splits a String object into an array of strings by separating the string into ...
- Web/JavaScript/Reference/Global_Objects/String/startsWith The startsWith() method determines whether a string begins with the characters of another ...
- Web/JavaScript/Reference/Global_Objects/String/strike The strike() method creates a strike HTML element that causes a string to be displayed as ...
- Web/JavaScript/Reference/Global_Objects/String/sub The sub() method creates a sub HTML element that causes a string to be displayed as subscript.
- Web/JavaScript/Reference/Global_Objects/String/substr The substr() method returns the characters in a string beginning at the specified location ...
- Web/JavaScript/Reference/Global_Objects/String/substring The substring() method returns a subset of a string between one index and another, or through ...
- Web/JavaScript/Reference/Global_Objects/String/sup The sup() method creates a sup HTML element that causes a string to be displayed as superscript.
- Web/JavaScript/Reference/Global_Objects/String/toLocaleLowerCase The toLocaleLowerCase() method returns the calling string value converted to lower case, ...
- Web/JavaScript/Reference/Global_Objects/String/toLocaleUpperCase The toLocaleUpperCase() method returns the calling string value converted to upper case, ...
- Web/JavaScript/Reference/Global_Objects/String/toLowerCase The toLowerCase() method returns the calling string value converted to lower case.
- Web/JavaScript/Reference/Global_Objects/String/toSource The toSource() method returns a string representing the source code of the object.
- Web/JavaScript/Reference/Global_Objects/String/toString The toString() method returns a string representing the specified object.
- Web/JavaScript/Reference/Global_Objects/String/toUpperCase The toUpperCase() method returns the calling string value converted to upper case.
- Web/JavaScript/Reference/Global_Objects/String/Trim The trim() method removes whitespace from both ends of a string. Whitespace in this context is ...
- Web/JavaScript/Reference/Global_Objects/String/TrimLeft The trimLeft() method removes whitespace from the left end of a string.
- Web/JavaScript/Reference/Global_Objects/String/TrimRight The trimRight() method removes whitespace from the right end of a string.
- Web/JavaScript/Reference/Global_Objects/String/valueOf The valueOf() method returns the primitive value of a String object.