Moja lekcja

 0    22 Datenblatt    ksapieszczak
mp3 downloaden Drucken spielen überprüfen
 
Frage Antworten
charAt()
Lernen beginnen
Returns the character at a specified index (position)
charCodeAt()
Lernen beginnen
Returns the Unicode of the character at a specified index
fromCharCode()
Lernen beginnen
Returns Unicode values as characters
startsWith()
Lernen beginnen
Checks whether a string begins with specified characters
endsWith()
Lernen beginnen
Returns true if a string ends with a specified value
includes()
Lernen beginnen
Returns true if a string contains a specified value
indexOf()
Lernen beginnen
Returns the index (position) of the first occurrence of a value in a string
lastIndexOf()
Lernen beginnen
Returns the index (position) of the last occurrence of a value in a string
search()
Lernen beginnen
Searches a string for a value, or regular expression, and returns the index (position) of the match
match()
Lernen beginnen
Searches a string for a value, or a regular expression, and returns the matches
concat()
Lernen beginnen
Returns two or more joined strings
replace()
Lernen beginnen
Searches a string for a value, or a regular expression, and returns a string where the values are replaced
slice()
Lernen beginnen
Extracts a part of a string and returns a new string
substr()
Lernen beginnen
Extracts a number of characters from a string, from a start index (position)
repeat()
Lernen beginnen
Returns a new string with a number of copies of a string
substring()
Lernen beginnen
Extracts characters from a string, between two specified indices (positions)
split()
Lernen beginnen
Splits a string into an array of substrings
toString()
Lernen beginnen
Returns a string or a string object as a string
toLowerCase()
Lernen beginnen
Returns a string converted to lowercase letters
toUpperCase()
Lernen beginnen
Returns a string converted to uppercase letters
trim()
Lernen beginnen
Returns a string with removed whitespaces
valueOf()
Lernen beginnen
Returns the primitive value of a string or a string object

Sie müssen eingeloggt sein, um einen Kommentar zu schreiben.