Liking cljdoc? Tell your friends :D

js.String

The String global object is a constructor for strings or a sequence characters.

The String global object is a constructor for strings or a sequence
characters.
raw docstring

anchorcljs

(anchor this name)

Method.

[Deprecated]

The anchor() method creates an <a> HTML anchor element that used as a hypertext target.

str.anchor(name)

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/anchor

Method.

[Deprecated]

The anchor() method creates an `<a>` HTML anchor element that
used as a hypertext target.

`str.anchor(name)`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/anchor`
sourceraw docstring

bigcljs

(big this)

Method.

[Deprecated]

The big() method creates a <big> HTML element that causes a to be displayed in a big font.

str.big()

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/big

Method.

[Deprecated]

The big() method creates a `<big>` HTML element that causes a
to be displayed in a big font.

`str.big()`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/big`
sourceraw docstring

(blink this)

Method.

[Deprecated]

The blink() method creates a <blink> HTML element that causes string to blink.

str.blink()

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/blink

Method.

[Deprecated]

The blink() method creates a `<blink>` HTML element that causes
string to blink.

`str.blink()`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/blink`
sourceraw docstring

boldcljs

(bold this)

Method.

[Deprecated]

The bold() method creates a <b> HTML element that causes a to be displayed as bold.

str.bold()

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/bold

Method.

[Deprecated]

The bold() method creates a `<b>` HTML element that causes a
to be displayed as bold.

`str.bold()`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/bold`
sourceraw docstring

char-atcljs

(char-at this index)

Method.

The js.String object's charAt() method returns a new string of the single UTF-16 code unit located at the specified offset the string.

character = str.charAt(index)

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/charAt

Method.

The `js.String` object's charAt() method returns a new string
of the single UTF-16 code unit located at the specified offset
the string.

`character = str.charAt(index)`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/charAt`
sourceraw docstring

char-code-atcljs

(char-code-at this index)

Method.

The charCodeAt() method returns an integer between 0 and 65535 the UTF-16 code unit at the given index.

str.charCodeAt(index)

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/charCodeAt

Method.

The charCodeAt() method returns an integer between 0 and 65535
the UTF-16 code unit at the given index.

`str.charCodeAt(index)`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/charCodeAt`
sourceraw docstring

code-point-atcljs

(code-point-at this pos)

Method.

The codePointAt() method returns a non-negative integer that the Unicode code point value.

str.codePointAt(pos)

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/codePointAt

Method.

The codePointAt() method returns a non-negative integer that
the Unicode code point value.

`str.codePointAt(pos)`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/codePointAt`
sourceraw docstring

concatcljs

(concat this & args)

Method.

The concat() method concatenates the string arguments to the string and returns a new string.

str.concat(string2[, string3, ..., stringN])

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/concat

Method.

The concat() method concatenates the string arguments to the
string and returns a new string.

`str.concat(string2[, string3, ..., stringN])`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/concat`
sourceraw docstring

ends-withcljs

(ends-with this & args)

Method.

The endsWith() method determines whether a string ends with the of a specified string, returning true or false as appropriate.

str.endsWith(searchString[, length])

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/endsWith

Method.

The endsWith() method determines whether a string ends with the
of a specified string, returning true or false as appropriate.

`str.endsWith(searchString[, length])`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/endsWith`
sourceraw docstring

fixedcljs

(fixed this)

Method.

[Deprecated]

The fixed() method creates a <tt> HTML element that causes string to be displayed in fixed-pitch font.

str.fixed()

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/fixed

Method.

[Deprecated]

The fixed() method creates a `<tt>` HTML element that causes
string to be displayed in fixed-pitch font.

`str.fixed()`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/fixed`
sourceraw docstring

fontcolorcljs

(fontcolor this color)

Method.

[Deprecated]

The fontcolor() method creates a <font> HTML element that causes string to be displayed in the specified font color.

str.fontcolor(color)

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/fontcolor

Method.

[Deprecated]

The fontcolor() method creates a `<font>` HTML element that causes
string to be displayed in the specified font color.

`str.fontcolor(color)`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/fontcolor`
sourceraw docstring

fontsizecljs

(fontsize this size)

Method.

[Deprecated]

The fontsize() method creates a <font> HTML element that causes string to be displayed in the specified font size.

str.fontsize(size)

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/fontsize

Method.

[Deprecated]

The fontsize() method creates a `<font>` HTML element that causes
string to be displayed in the specified font size.

`str.fontsize(size)`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/fontsize`
sourceraw docstring

from-char-codecljs

(from-char-code this & args)

Method.

The static String.fromCharCode() method returns a string created the specified sequence of UTF-16 code units.

String.fromCharCode(num1[, ...[, numN]])

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/fromCharCode

Method.

The static String.fromCharCode() method returns a string created
the specified sequence of UTF-16 code units.

`String.fromCharCode(num1[, ...[, numN]])`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/fromCharCode`
sourceraw docstring

from-code-pointcljs

(from-code-point this & args)

Method.

The static String.fromCodePoint() method returns a string created using the specified sequence of code points.

String.fromCodePoint(num1[, ...[, numN]])

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/fromCodePoint

Method.

The static String.fromCodePoint() method returns a string created
using the specified sequence of code points.

`String.fromCodePoint(num1[, ...[, numN]])`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/fromCodePoint`
sourceraw docstring

includescljs

(includes this & args)

Method.

The includes() method determines whether one string may be found another string, returning true or false as appropriate.

str.includes(searchString[, position])

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/includes

Method.

The includes() method determines whether one string may be found
another string, returning true or false as appropriate.

`str.includes(searchString[, position])`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/includes`
sourceraw docstring

index-ofcljs

(index-of this & args)

Method.

The indexOf() method returns the index within the calling js.String of the first occurrence of the specified value, starting the at fromIndex. Returns -1 if the value is not found.

str.indexOf(searchValue) str.indexOf(searchValue, fromIndex)

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/indexOf

Method.

The indexOf() method returns the index within the calling `js.String`
of the first occurrence of the specified value, starting the
at fromIndex. Returns -1 if the value is not found.

`str.indexOf(searchValue)
str.indexOf(searchValue, fromIndex)`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/indexOf`
sourceraw docstring

italicscljs

(italics this)

Method.

[Deprecated]

The italics() method creates an <i> HTML element that causes string to be italic.

str.italics()

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/italics

Method.

[Deprecated]

The italics() method creates an `<i>` HTML element that causes
string to be italic.

`str.italics()`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/italics`
sourceraw docstring

last-index-ofcljs

(last-index-of this & args)

Method.

The lastIndexOf() method returns the index within the calling object of the last occurrence of the specified value, searching from fromIndex. Returns -1 if the value is not found.

str.lastIndexOf(searchValue[, fromIndex])

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/lastIndexOf

Method.

The lastIndexOf() method returns the index within the calling
object of the last occurrence of the specified value, searching
from fromIndex. Returns -1 if the value is not found.

`str.lastIndexOf(searchValue[, fromIndex])`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/lastIndexOf`
sourceraw docstring

lengthcljs

(length this)

Property.

The length property of a js.String object indicates the length a string, in UTF-16 code units.

string.length

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/length

Property.

The length property of a `js.String` object indicates the length
a string, in UTF-16 code units.

`string.length`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/length`
sourceraw docstring

(link this url)

Method.

[Deprecated]

The link() method creates a string representing the code for <a> HTML element to be used as a hypertext link to another

str.link(url)

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/link

Method.

[Deprecated]

The link() method creates a string representing the code for
`<a>` HTML element to be used as a hypertext link to another

`str.link(url)`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/link`
sourceraw docstring

locale-comparecljs

(locale-compare this & args)

Method.

The localeCompare() method returns a number indicating whether reference string comes before or after or is the same as the string in sort order.

referenceStr.localeCompare(compareString[, locales[, options]])

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/localeCompare

Method.

The localeCompare() method returns a number indicating whether
reference string comes before or after or is the same as the
string in sort order.

`referenceStr.localeCompare(compareString[, locales[, options]])`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/localeCompare`
sourceraw docstring

matchcljs

(match this regexp)

Method.

The match() method retrieves the result of matching a string a regular expression.

str.match(regexp)

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/match

Method.

The match() method retrieves the result of matching a string
a regular expression.

`str.match(regexp)`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/match`
sourceraw docstring

match-allcljs

(match-all this regexp)

Method.

The matchAll() method returns an iterator of all results matching string against a regular expression, including capturing groups.

str.matchAll(regexp)

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/matchAll

Method.

The matchAll() method returns an iterator of all results matching
string against a regular expression, including capturing groups.

`str.matchAll(regexp)`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/matchAll`
sourceraw docstring

normalizecljs

(normalize this & args)

Method.

The normalize() method returns the Unicode Normalization Form a given string (if the value isn't a string, it will be converted one first).

str.normalize([form])

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/normalize

Method.

The normalize() method returns the Unicode Normalization Form
a given string (if the value isn't a string, it will be converted
one first).

`str.normalize([form])`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/normalize`
sourceraw docstring

pad-endcljs

(pad-end this & args)

Method.

The padEnd() method pads the current string with a given string if needed) so that the resulting string reaches a given length. padding is applied from the end of the current string.

str.padEnd(targetLength [, padString])

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/padEnd

Method.

The padEnd() method pads the current string with a given string
if needed) so that the resulting string reaches a given length.
padding is applied from the end of the current string.

`str.padEnd(targetLength [, padString])`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/padEnd`
sourceraw docstring

pad-startcljs

(pad-start this & args)

Method.

The padStart() method pads the current string with another string times, if needed) until the resulting string reaches the given

str.padStart(targetLength [, padString])

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/padStart

Method.

The padStart() method pads the current string with another string
times, if needed) until the resulting string reaches the given

`str.padStart(targetLength [, padString])`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/padStart`
sourceraw docstring

prototypecljs

(prototype this)

Property.

The String.prototype property represents the js.String prototype

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/prototype

Property.

The String.prototype property represents the `js.String` prototype

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/prototype`
sourceraw docstring

quotecljs

(quote this)

Method.

[Non Standard] [Obsolute]

The non-standard quote() method returns a copy of the string, various special characters in the string with their escape sequences wrapping the result in double-quotes (").

str.quote()

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/quote

Method.

[Non Standard]
[Obsolute]

The non-standard quote() method returns a copy of the string,
various special characters in the string with their escape sequences
wrapping the result in double-quotes (\").

`str.quote()`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/quote`
sourceraw docstring

rawcljs

(raw this & args)

Method.

The static String.raw() method is a tag function of template similar to the r prefix in Python or the @ prefix in C# for string (yet there is a difference: see explanations in this issue). used to get the raw string form of template strings, that is, (e.g. ${foo}) are processed, but escapes (e.g. \n) are not.

`String.raw(callSite, ...substitutions)

String.raw`templateString``

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/raw

Method.

The static String.raw() method is a tag function of template
similar to the r prefix in Python or the @ prefix in C# for string
(yet there is a difference: see explanations in this issue).
used to get the raw string form of template strings, that is,
(e.g. ${foo}) are processed, but escapes (e.g. \\n) are not.

`String.raw(callSite, ...substitutions)

String.raw`templateString``

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/raw`
sourceraw docstring

repeatcljs

(repeat this count)

Method.

The repeat() method constructs and returns a new string which the specified number of copies of the string on which it was concatenated together.

str.repeat(count);

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/repeat

Method.

The repeat() method constructs and returns a new string which
the specified number of copies of the string on which it was
concatenated together.

`str.repeat(count);`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/repeat`
sourceraw docstring

replacecljs

(replace this & args)

Method.

The replace() method returns a new string with some or all matches a pattern replaced by a replacement.

var newStr = str.replace(regexp|substr, newSubstr|function)

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/replace

Method.

The replace() method returns a new string with some or all matches
a pattern replaced by a replacement.

`var newStr = str.replace(regexp|substr, newSubstr|function)`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/replace`
sourceraw docstring

(search this regexp)

Method.

The search() method executes a search for a match between a regular and this js.String object.

str.search(regexp)

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/search

Method.

The search() method executes a search for a match between a regular
and this `js.String` object.

`str.search(regexp)`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/search`
sourceraw docstring

set-length!cljs

(set-length! this val)

Property.

The length property of a js.String object indicates the length a string, in UTF-16 code units.

string.length

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/length

Property.

The length property of a `js.String` object indicates the length
a string, in UTF-16 code units.

`string.length`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/length`
sourceraw docstring

set-prototype!cljs

(set-prototype! this val)

Property.

The String.prototype property represents the js.String prototype

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/prototype

Property.

The String.prototype property represents the `js.String` prototype

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/prototype`
sourceraw docstring

slicecljs

(slice this & args)

Method.

The slice() method extracts a section of a string and returns as a new string, without modifying the original string.

str.slice(beginIndex[, endIndex])

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/slice

Method.

The slice() method extracts a section of a string and returns
as a new string, without modifying the original string.

`str.slice(beginIndex[, endIndex])`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/slice`
sourceraw docstring

smallcljs

(small this)

Method.

[Deprecated]

The small() method creates a <small> HTML element that causes string to be displayed in a small font.

str.small()

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/small

Method.

[Deprecated]

The small() method creates a `<small>` HTML element that causes
string to be displayed in a small font.

`str.small()`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/small`
sourceraw docstring

splitcljs

(split this & args)

Method.

The split() method splits a js.String object into an array strings by separating the string into substrings, using a specified string to determine where to make each split.

`str.split([separator[, limit]])

Attention: If an empty string ("") is used as the separator, the string is not split between each user-perceived character (grapheme cluster) or between each unicode character (codepoint) but between each UTF-16 codeunit. This destroys surrogate pairs. See also How do you get a string to a character array in JavaScript? on stackoverflow.`

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/split

Method.

The split() method splits a `js.String` object into an array
strings by separating the string into substrings, using a specified
string to determine where to make each split.

`str.split([separator[, limit]])


Attention: If an empty string (\"\") is used as the separator, the string is not split between each user-perceived character (grapheme cluster) or between each unicode character (codepoint) but between each UTF-16 codeunit. This destroys surrogate pairs. See also How do you get a string to a character array in JavaScript? on stackoverflow.`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/split`
sourceraw docstring

starts-withcljs

(starts-with this & args)

Method.

The startsWith() method determines whether a string begins with characters of a specified string, returning true or false as

str.startsWith(searchString[, position])

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/startsWith

Method.

The startsWith() method determines whether a string begins with
characters of a specified string, returning true or false as

`str.startsWith(searchString[, position])`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/startsWith`
sourceraw docstring

strikecljs

(strike this)

Method.

[Deprecated]

The strike() method creates a <strike> HTML element that causes string to be displayed as struck-out text.

str.strike()

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/strike

Method.

[Deprecated]

The strike() method creates a `<strike>` HTML element that causes
string to be displayed as struck-out text.

`str.strike()`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/strike`
sourceraw docstring

subcljs

(sub this)

Method.

[Deprecated]

The sub() method creates a <sub> HTML element that causes a to be displayed as subscript.

str.sub()

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/sub

Method.

[Deprecated]

The sub() method creates a `<sub>` HTML element that causes a
to be displayed as subscript.

`str.sub()`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/sub`
sourceraw docstring

substrcljs

(substr this & args)

Method.

The substr() method returns a portion of the string, starting the specified index and extending for a given number of characters

str.substr(start[, length])

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/substr

Method.

The substr() method returns a portion of the string, starting
the specified index and extending for a given number of characters

`str.substr(start[, length])`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/substr`
sourceraw docstring

substringcljs

(substring this & args)

Method.

The substring() method returns the part of the string between start and end indexes, or to the end of the string.

str.substring(indexStart[, indexEnd])

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/substring

Method.

The substring() method returns the part of the string between
start and end indexes, or to the end of the string.

`str.substring(indexStart[, indexEnd])`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/substring`
sourceraw docstring

supcljs

(sup this)

Method.

[Deprecated]

The sup() method creates a <sup> HTML element that causes a to be displayed as superscript.

str.sup()

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/sup

Method.

[Deprecated]

The sup() method creates a `<sup>` HTML element that causes a
to be displayed as superscript.

`str.sup()`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/sup`
sourceraw docstring

to-locale-lower-casecljs

(to-locale-lower-case this & args)

Method.

The toLocaleLowerCase() method returns the calling string value to lower case, according to any locale-specific case mappings.

str.toLocaleLowerCase() str.toLocaleLowerCase(locale) str.toLocaleLowerCase([locale, locale, ...])

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/toLocaleLowerCase

Method.

The toLocaleLowerCase() method returns the calling string value
to lower case, according to any locale-specific case mappings.

`str.toLocaleLowerCase()
str.toLocaleLowerCase(locale)
str.toLocaleLowerCase([locale, locale, ...])`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/toLocaleLowerCase`
sourceraw docstring

to-locale-upper-casecljs

(to-locale-upper-case this & args)

Method.

The toLocaleUpperCase() method returns the calling string value to upper case, according to any locale-specific case mappings.

str.toLocaleUpperCase() str.toLocaleUpperCase(locale) str.toLocaleUpperCase([locale, locale, ...])

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/toLocaleUpperCase

Method.

The toLocaleUpperCase() method returns the calling string value
to upper case, according to any locale-specific case mappings.

`str.toLocaleUpperCase()
str.toLocaleUpperCase(locale)
str.toLocaleUpperCase([locale, locale, ...])`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/toLocaleUpperCase`
sourceraw docstring

to-lower-casecljs

(to-lower-case this)

Method.

The toLowerCase() method returns the calling string value converted lower case.

str.toLowerCase()

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/toLowerCase

Method.

The toLowerCase() method returns the calling string value converted
lower case.

`str.toLowerCase()`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/toLowerCase`
sourceraw docstring

to-sourcecljs

(to-source this & args)

Method.

[Non Standard]

The toSource() method returns a string representing the source of the object.

String.toSource() str.toSource()

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/toSource

Method.

[Non Standard]

The toSource() method returns a string representing the source
of the object.

`String.toSource()
str.toSource()`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/toSource`
sourceraw docstring

to-stringcljs

(to-string this)

Method.

The toString() method returns a string representing the specified

str.toString()

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/toString

Method.

The toString() method returns a string representing the specified

`str.toString()`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/toString`
sourceraw docstring

to-upper-casecljs

(to-upper-case this)

Method.

The toUpperCase() method returns the calling string value converted uppercase (the value will be converted to a string if it isn't

str.toUpperCase()

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/toUpperCase

Method.

The toUpperCase() method returns the calling string value converted
uppercase (the value will be converted to a string if it isn't

`str.toUpperCase()`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/toUpperCase`
sourceraw docstring

trimcljs

(trim this)

Method.

The trim() method removes whitespace from both ends of a string. in this context is all the whitespace characters (space, tab, space, etc.) and all the line terminator characters (LF, CR,

str.trim()

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/Trim

Method.

The trim() method removes whitespace from both ends of a string.
in this context is all the whitespace characters (space, tab,
space, etc.) and all the line terminator characters (LF, CR,

`str.trim()`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/Trim`
sourceraw docstring

trim-endcljs

(trim-end this & args)

Method.

The trimEnd() method removes whitespace from the end of a string. is an alias of this method.

str.trimEnd(); str.trimRight();

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/trimEnd

Method.

The trimEnd() method removes whitespace from the end of a string.
is an alias of this method.

`str.trimEnd();
str.trimRight();`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/trimEnd`
sourceraw docstring

trim-startcljs

(trim-start this & args)

Method.

The trimStart() method removes whitespace from the beginning a string. trimLeft() is an alias of this method.

str.trimStart(); str.trimLeft();

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/trimStart

Method.

The trimStart() method removes whitespace from the beginning
a string. trimLeft() is an alias of this method.

`str.trimStart();
str.trimLeft();`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/trimStart`
sourceraw docstring

value-ofcljs

(value-of this)

Method.

The valueOf() method returns the primitive value of a js.String

str.valueOf()

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/valueOf

Method.

The valueOf() method returns the primitive value of a `js.String`

`str.valueOf()`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/valueOf`
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close