Moja lekcja

 0    22 fiszki    ksapieszczak
ściągnij mp3 drukuj graj sprawdź się
 
Pytanie Odpowiedź
charAt()
rozpocznij naukę
Returns the character at a specified index (position)
charCodeAt()
rozpocznij naukę
Returns the Unicode of the character at a specified index
fromCharCode()
rozpocznij naukę
Returns Unicode values as characters
startsWith()
rozpocznij naukę
Checks whether a string begins with specified characters
endsWith()
rozpocznij naukę
Returns true if a string ends with a specified value
includes()
rozpocznij naukę
Returns true if a string contains a specified value
indexOf()
rozpocznij naukę
Returns the index (position) of the first occurrence of a value in a string
lastIndexOf()
rozpocznij naukę
Returns the index (position) of the last occurrence of a value in a string
search()
rozpocznij naukę
Searches a string for a value, or regular expression, and returns the index (position) of the match
match()
rozpocznij naukę
Searches a string for a value, or a regular expression, and returns the matches
concat()
rozpocznij naukę
Returns two or more joined strings
replace()
rozpocznij naukę
Searches a string for a value, or a regular expression, and returns a string where the values are replaced
slice()
rozpocznij naukę
Extracts a part of a string and returns a new string
substr()
rozpocznij naukę
Extracts a number of characters from a string, from a start index (position)
repeat()
rozpocznij naukę
Returns a new string with a number of copies of a string
substring()
rozpocznij naukę
Extracts characters from a string, between two specified indices (positions)
split()
rozpocznij naukę
Splits a string into an array of substrings
toString()
rozpocznij naukę
Returns a string or a string object as a string
toLowerCase()
rozpocznij naukę
Returns a string converted to lowercase letters
toUpperCase()
rozpocznij naukę
Returns a string converted to uppercase letters
trim()
rozpocznij naukę
Returns a string with removed whitespaces
valueOf()
rozpocznij naukę
Returns the primitive value of a string or a string object

Musisz się zalogować, by móc napisać komentarz.